I am currently working on a v-tabs control and have the code snippet below:
</v-tabs>
<v-tab
disabled
v-for="tab of tabs"
:key="tab.index"
v-on:change="tabSelected(tab.index)">
{{tab.name}}
</v-tab>
</v-tabs>
At the moment, the tabs are disabled by default. They will only become active once the user selects an item that populates the tabs with data. My goal is to implement code that, when triggered by a button click, retrieves the necessary data and activates the tabs simultaneously.