I have a transition question: I'm using group transitions to animate a grid style v-for div list.
When I remove elements the leaving divs fly away while fading out (because of the required absolute position I assume).
Is there any way to keep the elements in place while they're fading out, but also animate the other moving elements? Removing the "position: absolute" from the leave-active CSS class makes the fade work, however that breaks the move transitions. It would be nice if I could somehow make the "move" transitions fire after the "leave" transitions finishes.
Here is a mini-project the demonstrates my problem: (I commented the code-part in question in the template section):
https://replit.com/@NyersLaszlo/Vue-Transition-Test#src/App.vue