I am facing an issue and need some help.
My goal is to create a web application-like interface.
However, when I use vue.js transitions, it displays like this:
https://i.sstatic.net/U1g6M.gif
The transition automatically resizes, repeats, and changes size.
Here is the code snippet:
<transition name="slide">
<router-view class="main" v-cloak/>
</transition>
.slide-enter {
opacity: 0;
}
.slide-leave-active, .slide-enter {
opacity: 0;
transform: translateX(100%);
}
Can anyone advise on how to resolve this issue? Also, wishing everyone a happy new year!!! (__)