0👍
Generally speaking, adding transition to dynamically generated HTML5 elements can be a mess. Take a look at this great StackOverflow answer explaining why.
What you can do is using a v-show
directive instead of a v-if
. Vue will render your component and simply hide it with a display: none
CSS property.
- [Vuejs]-Vuetify v-data-table row click event with modifiers
- [Vuejs]-Why Datetime being not set using v-model?
Source:stackexchange.com