problem description
use Animate.css to switch components. I want to modify the animation effect dynamically, but the following two class names of transition (enter-active-class,leave-active-class) cannot be bound, nor can I modify them directly with DOM.
related codes
< transition
name="fade"
enter-active-class="animated fadeInRight"
leave-active-class="animated fadeOutLeft"
>
<component
class="view_item"
v-bind:is="currentTabComponent"
></component>
</transition>