Files
ui/docs/components/content/examples/TabsExampleIndex.vue
2023-07-27 16:22:49 +02:00

17 lines
322 B
Vue

<script setup>
const items = [{
label: 'Tab1',
content: 'This is the content shown for Tab1'
}, {
label: 'Tab2',
content: 'And, this is the content for Tab2'
}, {
label: 'Tab3',
content: 'Finally, this is the content for Tab3'
}]
</script>
<template>
<UTabs :items="items" :default-index="2" />
</template>