[Vuejs]-Ref on v-tab-item content is empty in mounted hook

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

Leave a comment