I want to create vuetify vertical tabs, but I don't now props for it.
It's my vue template in component:
<template>
<v-app>
<v-tabs color="grey" grow>
<v-tab class="tabs-container-heroes"
v-for="tab of tabs"
:key="tab.id"
:title=tab
>
{{tab.name}}
</v-tab>
<v-tab-item v-for="tab in tabs" :key="tab.id">
<HeroPresenter/>
</v-tab-item>
</v-tabs>
</v-app>
Now I have tabs like this vuetify example