[Vuejs]-How do I get Vuejs transition to add animations my modal?

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.

Leave a comment