I have a unique component that needs to include a list using v-for
beneath it.
<rearrangeable>
<div v-for="item in items">...</div>
</rearrangeable>
I'm attempting to incorporate a <transition-group>
element for adding animations when the list items change. However, I faced an issue where placing the <transition-group>
inside the <rearrangeable>
prevents the functionality of the rearrangeable component. On the other hand, if I set the <transition-group>
as a parent of <rearrangeable>
, then the transition group doesn't work properly. Is there a workaround available for this dilemma?