[Vuejs]-How to change aos-delay value in v-for component

-1👍

You can add the i to some time, and this will increment the delay for each one

<div
  v-for="(el, i) in list"
  :key="i"
  data-aos="fade-right"
  :data-aos-delay="1000 + i * 10"
>

Leave a comment