We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm having a problem when using slides that receive the slides data from props.
<vueper-slides :infinite="false" :bullets="false" fixedHeight="250px" class="no-shadow" :visibleSlides="3.5" :gap="5" :draggingDistance="20"> <vueper-slide v-for="(slide, i) in slides" :key="i"> <template #content> <a :href="slide.url" target="_blank"> <div class="vueperslide__content-wrapper" style="flex-direction: row"> <div class="cardTip"> <p>{{ slide.title }}</p> <div class="iconTip"></div> </div> </div> </a> </template> </vueper-slide> </vueper-slides>
Basically, when i do this it works:
data(){ return { slides: [{ title: 'test', url: 'test' }] } }
But, props makes the drag and arrows click stop working:
props: { slides: Array, },
I'm using Vue with Nuxt, so maybe that's a problem with ssr lifecycle ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm having a problem when using slides that receive the slides data from props.
Basically, when i do this it works:
But, props makes the drag and arrows click stop working:
I'm using Vue with Nuxt, so maybe that's a problem with ssr lifecycle ?
The text was updated successfully, but these errors were encountered: