[Vuejs]-Vue, animation on dynamic component not triggering?

0๐Ÿ‘

<keep-alive>
    <transition name="fade" mode="out-in">
        <component :is="currentView"></component>
    </transition>
</keep-alive>

Please see if this works. Also, check that the CSS in included.

Leave a comment