[Vuejs]-How can I allow a Vue component to manage its own transitions?

0👍

My current understanding is that during v-on:leave the component is no longer reactive, and you should only be doing manual dom-manipulation…

Instead, my solution was to create a component that handled the adding and removing of the elements via a watch and then passed the array through to my component in props.

Leave a comment