Answer the question
In order to leave comments, you need to log in
How to properly animate Vue 2 elements?
I'm trying to animate routes using
<transition name="fade">
<div class="content">
<router-view />
</div>
</transition>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter,
.fade-leave-to {
opacity: 0;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question