python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Vue Transition Group Animation - start v-move only after v-leave finishes
I would like to have the following flow:
5 items on a stack of notifications.
1 item is poped, so it enters on v-leave state, while the other 4 items don't animate at all. After item enters on v-leave...
Igor Lira
Votes: 0
Answers: 0
Why is my transition not working on "leave"?
I have a global confirmModal.vue which looks like this:
<template>
<Transition
appear
enter-from-class="opacity-0"
enter-to-class="opacity-100"
leave-fro...
Bryan Henryon
Votes: 0
Answers: 2
VueJS 3 transition-group control parent size
I have a group of elements showing/hiding/rearranging with a transition group, nothing fancy.
.cross-fade-leave-active {
transition: transform $fadeSpeed ease-in-out, opacity $fadeSpeed ease-in-ou...
Randy Hall
Votes: 0
Answers: 1
Why transition does not work in my Vue components?
I am building a Vue app. I have two components that are related to each other. One of them is called loginRegister.vue and the code of that is here:
loginRegister.vue:
<template>
<BaseM...
hamid-davodi
Votes: 0
Answers: 1