Files
ui/docs/app/components/content/examples/tabs/TabsContentSlotExample.vue
2024-11-06 12:59:19 +01:00

21 lines
340 B
Vue

<script setup lang="ts">
const items = [
{
label: 'Account',
icon: 'i-lucide-user'
},
{
label: 'Password',
icon: 'i-lucide-lock'
}
]
</script>
<template>
<UTabs :items="items" class="w-full">
<template #content="{ item }">
<p>This is the {{ item.label }} tab.</p>
</template>
</UTabs>
</template>