Closed Samiam519 closed 2 years ago
Is there a property to dynamically turn the entire scroll reveal on or off?
For example
<div v-for="(a, i) in articles" :key="'article-'+i"> <Article v-scroll-reveal="{ active: openCards.includes(a.id) }" :title="a.title" :link="a.link" :content="a.content" :id="a.id" /> </div> </div>
I tried this but it didn't work
<div v-for="(a, i) in articles" :key="'article-'+i"> <Article :v-scroll-reveal="openCards.includes(a.id)" :title="a.title" :link="a.link" :content="a.content" :id="a.id" /> </div> </div>
I think setting duration to 0 should have the intended effect.
duration
0
Is there a property to dynamically turn the entire scroll reveal on or off?
For example
I tried this but it didn't work