Files
ui/playground/pages/tabs.vue
2024-04-05 17:14:23 +02:00

20 lines
410 B
Vue

<script setup lang="ts">
const items = [{
label: 'Tab1',
icon: 'i-heroicons-home',
content: 'This is the content shown for Tab1'
}, {
label: 'Tab2',
icon: 'i-heroicons-user',
content: 'And, this is the content for Tab2'
}, {
label: 'Tab3',
icon: 'i-heroicons-bell',
content: 'Finally, this is the content for Tab3'
}]
</script>
<template>
<UTabs :items="items" class="w-96" />
</template>