I couple tabs on my page and I'm trying to stay on the same tab after refreshing the page but I'm not sure how to approach this. Right now if I'm on TAB-2 and I refresh the page, it will take me back to the first tab.
<v-tabs vertical>
<v-tab>
<v-icon left>mdi-account</v-icon>
TAB-1
</v-tab>
<v-tab>
<v-icon left>mdi-lock</v-icon>
TAB-2
</v-tab>
v-tab-item>
<v-card flat>
<v-card-text>
<p>
TAB-1 Sed aliquam ultrices mauris. Donec posuere vulputate arcu. Morbi ac felis. Etiam feugiat lorem non metus. Sed a libero.
</p>
</v-card-text>
</v-card>
</v-tab-item>
<v-tab-item>
<v-card flat>
<v-card-text>
<p>
TAB -2 Morbi nec metus. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis .
</p>
</v-card-text>
</v-card>
</v-tab-item>
</v-tabs