I'm making a simple transition in a webapp (using animate.css), where the user clicks a button and the current component exits the screen from the left and the other component comes from right to left. But when I return to my initial component, the transition does not go the other way.
How can I accomplish this? Is there any property in the Vue's transition so that it goes the other way?
Example of the properties below:
<transition name="router-anim" leave-active-class="animated slideOutLeft faster" enter-active-class="animated slideInRight faster" mode="out-in">
<router-view></router-view>
</transition>