Files
general-template/components/template/ui-components/tabs/CustomIcons.vue
T
2026-04-21 09:08:42 +07:00

19 lines
353 B
Vue

<template>
<v-sheet elevation="0">
<v-tabs
bg-color="primary"
next-icon="mdi-arrow-right-bold-box-outline"
prev-icon="mdi-arrow-left-bold-box-outline"
show-arrows
>
<v-tab
v-for="i in 30"
:key="i"
>
Item {{ i }}
</v-tab>
</v-tabs>
</v-sheet>
</template>