Looking for a way to run Vue animations infinitely. The initial animation works, but it won't run infinitely.
.endless {
animation: endless_animation 10s linear infinite;
}
This works with plain css, but will restart every time the component updates.
<transition appear appear-class="endless">
<div class="endless_animation_div"></div>
</transition>
This doesn't restart everytime the component updates, but only fires once. How do I infinitely animate a vue transition?