[Vuejs]-Vue.js – Disable Transitions on Child Div

0👍

You can achieve it by modifying your CSS

.fade-enter-active, .fade-leave-active {
  transition: opacity .0s;
}

modified fiddle link

Leave a comment