lint:fix all

This commit is contained in:
2025-07-29 00:32:57 +08:00
parent 7d2f57df97
commit 1745a54eb6
34 changed files with 820 additions and 606 deletions

View File

@@ -1,6 +1,14 @@
<template>
<UTabs :items="tabItems" class="w-full" :unmount-on-hide="false" variant="link">
<template v-for="item in tabItems" #[item.slot]="{ item: slotItem }">
<UTabs
:items="tabItems"
class="w-full"
:unmount-on-hide="false"
variant="link"
>
<template
v-for="item in tabItems"
#[item.slot]="{ item: slotItem }"
>
<div class="mt-4">
<component :is="getSlotContent(slotItem)" />
</div>
@@ -38,4 +46,4 @@ function getSlotContent(item: TabsItem) {
if (!item.slot) return null
return slotContents.value[item.slot]
}
</script>
</script>