mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
20 lines
448 B
Vue
20 lines
448 B
Vue
<script setup lang="ts">
|
|
const items = [{
|
|
label: 'Tab1',
|
|
icon: 'i-heroicons-information-circle',
|
|
content: 'This is the content shown for Tab1'
|
|
}, {
|
|
label: 'Tab2',
|
|
icon: 'i-heroicons-arrow-down-tray',
|
|
content: 'And, this is the content for Tab2'
|
|
}, {
|
|
label: 'Tab3',
|
|
icon: 'i-heroicons-eye-dropper',
|
|
content: 'Finally, this is the content for Tab3'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UTabs :items="items" :default-index="2" />
|
|
</template>
|