Files
ui/playground/pages/tabs.vue
2024-03-21 12:54:39 +01:00

17 lines
313 B
Vue

<script setup lang="ts">
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" />
</template>