33 lines
632 B
Vue
33 lines
632 B
Vue
<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>
|