[Vuejs]-Animating duplicate list items added with v-for

0👍

You are pushing at the end of the audioLogItems array.

If you want to see the first element being animated, you need to push it at the head of the array.

Try to use unshift.

this.audioLogItems.unshift({id: this.logId});

Leave a comment