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.
Source:stackexchange.com
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.