how to use keep-alive with transition in Vue?
I am now switching between left and right with the effect of sliding left and right
transition
<transition :name="transitionName">
<keep-alive>
<router-view v-if="$route.meta.keepAlive">
</router-view>
</keep-alive>
</transition>
<transition :name="transitionName">
<router-view v-if="!$route.meta.keepAlive"></router-view>
</transition>
how can I solve the problem if I add my animation in this way?