Files
ui/playground/compodium/examples/UTabsExample.vue
Romain Hamel f941df1541 chore: up
2025-03-28 08:58:21 +01:00

24 lines
519 B
Vue

<script setup lang="ts">
extendCompodiumMeta({
defaultProps: {
items: [{
label: 'Tab 1',
avatar: { src: 'https://avatars.githubusercontent.com/u/739984?v=4' },
content: 'This is the content shown for Tab 1'
}, {
label: 'Tab 2',
icon: 'i-lucide-user',
content: 'And, this is the content for Tab 2'
}, {
label: 'Tab 3',
icon: 'i-lucide-bell',
content: 'Finally, this is the content for Tab 3'
}]
}
})
</script>
<template>
<UTabs />
</template>