[Vuejs]-Vue transition animation of toggling between two components is not smooth

2👍

So as mentioned by @zero298 in the comments, I used the out-in transition mode and since my components don’t have a leave animation, it works like a charm.

👤Alimo

1👍

You could try using Vue.nextTick(). Hide the currently visible component and wait a tick to transition to the other. That would involve more toggles (one for each component) and keeping track of which one is currenly active.

Leave a comment