mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
24 lines
519 B
Vue
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>
|