The VueJS Guide offers a clever method for using the item's index to create a delayed transition for the items in the data set. You can learn more about it here. While this approach works great when the data set remains static, I'm encountering a challenge with my implementation. I have a "load more" button that fetches additional records and adds them to the array. Due to the delay being based on the index, the new items do not animate immediately - they wait for the existing items to finish animating first. Any suggestions on how to reset the timer effectively between calls?
Appreciate any insights!