mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 23:40:39 +01:00
docs(tabs): update examples
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<script setup lang="ts">
|
||||
const items = [
|
||||
{
|
||||
label: 'Account'
|
||||
},
|
||||
{
|
||||
label: 'Password'
|
||||
}
|
||||
]
|
||||
|
||||
const selected = ref('1')
|
||||
|
||||
// Note: This is for demonstration purposes only.
|
||||
onMounted(() => {
|
||||
setInterval(() => {
|
||||
selected.value = selected.value === '0' ? '1' : '0'
|
||||
}, 1000)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<UTabs v-model="selected" :content="false" :items="items" />
|
||||
</template>
|
||||
Reference in New Issue
Block a user