You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dynamic tabs demo at https://jsfiddle.net/b44cc4dq/245/ removes the first tab in the array instead of the correct one due to the missing 'index' in line 4 of the demo code.
<v-tab v-for="tab in tabs" :key="tab">
should read...
<v-tab v-for="(tab,index) in tabs" :key="tab">
The text was updated successfully, but these errors were encountered:
The dynamic tabs demo at https://jsfiddle.net/b44cc4dq/245/ removes the first tab in the array instead of the correct one due to the missing 'index' in line 4 of the demo code.
<v-tab v-for="tab in tabs" :key="tab">
should read...
<v-tab v-for="(tab,index) in tabs" :key="tab">
The text was updated successfully, but these errors were encountered: