[Vuejs]-Vuejs 2 removing from array (splice) not animating with transition

0👍

You probably forgot to specify the transition classes. This will give you a basic fade-out:

.list-leave-active {
  transition: all 0.5s;
  opacity: 0;
}

Please refer to the (excellent) docs on Transition Classes.

Leave a comment