Questions tagged [vuejs-transition]

No instructions have been provided for this tag at the moment!

Vue3's transition behavior sets it apart from Vue2. It introduces new functionalities when managing templates outside of the transition

I recently made the leap from Vue2 to Vue3, but I'm encountering some challenges with the transition behavior. Here is the original Vue2 code: https://codesandbox.io/p/sandbox/silent-surf-yth66k?file=%2Fsrc%2FApp.vue <template> <div id="a ...

The animation in Vue.js does not function properly with nested child elements

Here is the project I am working on: https://codesandbox.io/s/vue-template-c1rj1 I was expecting the image to smoothly appear from the bottom of the screen already centered, but instead it initially pops up at the bottom and then transitions to the center ...

What is the reason behind VueJS animations only functioning in a single direction?

I'm completely baffled by this issue. It seems that Vue3 is able to apply the move animation class correctly for a <transition-group/> when there is a list of items, but this only happens if the list is moved forward. I've created a CodePen ...