lint fix
This commit is contained in:
@@ -58,7 +58,7 @@
|
||||
color="primary"
|
||||
type="single"
|
||||
variant="pill"
|
||||
trailingIcon="lucide:chevron-right"
|
||||
trailing-icon="lucide:chevron-right"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -47,8 +47,4 @@ function getSlotContent(item: TabsItem) {
|
||||
if (!item.slot) return null
|
||||
return slotContents.value[item.slot]
|
||||
}
|
||||
|
||||
defineSlots<{
|
||||
default: () => any
|
||||
}>()
|
||||
</script>
|
||||
|
@@ -10,7 +10,10 @@
|
||||
v-for="(slot, i) in $slots.default?.() ?? []"
|
||||
:key="i"
|
||||
>
|
||||
<component :is="slot" :in-stack="true" />
|
||||
<component
|
||||
:is="slot"
|
||||
:in-stack="true"
|
||||
/>
|
||||
</div>
|
||||
</ECard>
|
||||
</template>
|
||||
|
@@ -14,11 +14,6 @@ export default defineNuxtConfig({
|
||||
devtools: {
|
||||
enabled: true
|
||||
},
|
||||
fonts: {
|
||||
defaults: {
|
||||
weights: ['300 800'],
|
||||
}
|
||||
},
|
||||
css: ['~/assets/css/main.css'],
|
||||
|
||||
content: {
|
||||
@@ -61,6 +56,11 @@ export default defineNuxtConfig({
|
||||
}
|
||||
}
|
||||
},
|
||||
fonts: {
|
||||
defaults: {
|
||||
weights: ['300 800']
|
||||
}
|
||||
},
|
||||
|
||||
icon: {
|
||||
clientBundle: {
|
||||
|
Reference in New Issue
Block a user