Initial commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<script setup>
|
||||
const currentTab = ref(0)
|
||||
const tabItemText = 'hortbread chocolate bar marshmallow bear claw tiramisu chocolate cookie wafer.'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VCard>
|
||||
<VTabs
|
||||
next-icon="tabler-arrow-right"
|
||||
prev-icon="tabler-arrow-left"
|
||||
>
|
||||
<VTab
|
||||
v-for="i in 10"
|
||||
:key="i"
|
||||
>
|
||||
Item {{ i }}
|
||||
</VTab>
|
||||
</VTabs>
|
||||
|
||||
<VCardText>
|
||||
<VWindow v-model="currentTab">
|
||||
<VWindowItem
|
||||
v-for="i in 10"
|
||||
:key="i"
|
||||
:value="i"
|
||||
>
|
||||
{{ tabItemText }}
|
||||
</VWindowItem>
|
||||
</VWindow>
|
||||
</VCardText>
|
||||
</VCard>
|
||||
</template>
|
||||
Reference in New Issue
Block a user