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.
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.
Source:stackexchange.com