Questions tagged [vue-transitions]

101 questions
0
votes
1 answer

Add delay between Vue router-view transitions

I'm trying to do some delay between route changes. For example user clicks on router-link and after previous View faded out I want to show some kind of Priomise based loading animation before next View's fade in. Here's my code:
Ariakas
  • 63
  • 2
  • 6
0
votes
0 answers

In Vue 3, when removing an element inside transition-group, the element width collapses before the animation

I've encountered a funny behavior while trying to make an animation for removing elements in a transition-group. My Transition Group:
0
votes
1 answer

How to create a treeview in vue with animations?

I want to create a treeview component in vue with animations. My idea was to create the treeview recursively without any animations first and then add the TransitionsGroup tag around it. So you pass a node and its childrens (an array of nodes and…
0
votes
1 answer

How to animate entry of v-for elements one by one?

I can wrap a v-for loop in a transition-group and make all elements appear at the same time like so: