mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
17 lines
227 B
Vue
17 lines
227 B
Vue
<script setup lang="ts">
|
|
const items = [
|
|
{
|
|
label: 'Account'
|
|
},
|
|
{
|
|
label: 'Password'
|
|
}
|
|
]
|
|
|
|
const selected = ref('1')
|
|
</script>
|
|
|
|
<template>
|
|
<UTabs v-model="selected" :content="false" :items="items" />
|
|
</template>
|