Vuetify: 1.0.0
Vue: 2.5.13
Browsers: Firefox 58.0
OS: Windows 7
Add cycle="false" and interval="0" to v-carousel.
Images cycle only on user input (clicking arrows or dots).
Carousel cycles ignoring cycle and interval settings.
Look at the console logs, you are passing in a string.
<v-carousel :cycle="false">
that's what I needed.
I have same problem. I have now:
<v-carousel height="auto" interval="1000000" :cycle="false">
cycling is still enabled.
also note I have put interval="1000000" as interval="0" puts a validation error in the console. can interval be turned off at all?
I'm using vuetify 1.5.8, been same with 1.4.x
We kindly ask users to not comment on closed/resolved issues. If you believe that this issue has not been correctly resolved, please create a new issue showing the regression or reach out to us in our Discord community.
ok, you're right. not opening another ticket as cycle does what it's intended to do, though the naming was misleading for me. I've expected cycle would turn off looping
Most helpful comment
<v-carousel :cycle="false">
that's what I needed.