mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
21 lines
353 B
Vue
21 lines
353 B
Vue
<script setup lang="ts">
|
|
const items = [
|
|
{
|
|
label: 'Account',
|
|
icon: 'i-heroicons-user'
|
|
},
|
|
{
|
|
label: 'Password',
|
|
icon: 'i-heroicons-lock-closed'
|
|
}
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<UTabs :items="items" class="w-full">
|
|
<template #content="{ item }">
|
|
<p>This is the {{ item.label }} tab.</p>
|
|
</template>
|
|
</UTabs>
|
|
</template>
|