vue-scroll-reveal icon indicating copy to clipboard operation
vue-scroll-reveal copied to clipboard

Interval don't works with Nuxt

Open MatteoGauthier opened this issue 4 years ago • 4 comments

MatteoGauthier avatar Nov 11 '19 14:11 MatteoGauthier

https://github.com/tserkov/vue-scroll-reveal#nuxt

tserkov avatar Nov 11 '19 20:11 tserkov

@tserkov i saw but it don't works on top of v-for element

MatteoGauthier avatar Nov 11 '19 21:11 MatteoGauthier

I am experiencing the same issue, and I am using static generation for website, with no server evolved. I still put ssr: false there, but it just works like regular reveal.

v-scroll-reveal='{ interval: 200 }'

Any idea how to fix this?

Lexpeartha avatar Dec 07 '20 10:12 Lexpeartha

Im using this as a workaround:

v-for="(el, index) in array"
:key="index"
v-scroll-reveal='{ delay: (index * 200) }'

Haeri avatar Jun 15 '21 12:06 Haeri