5
It’s probably because Vuetify is rendering tabs lazily (in other words doesn’t render the content of the tab which is still hidden)
You can use eager
prop on v-tab-item
to force rendering of hidden tabs. See the docs
Source:stackexchange.com
5
It’s probably because Vuetify is rendering tabs lazily (in other words doesn’t render the content of the tab which is still hidden)
You can use eager
prop on v-tab-item
to force rendering of hidden tabs. See the docs