Reputation: 11
Vuetify carousel - I cannot find the way to turn off the looping. I do not show images in my vuetify carousel, I use for a few steps for the user -passive steps, more like a description step by step and I don't need the loop in the carousel..
Thanks for help
[EDIT] For those who are interested I ended up using vue-carousel
Upvotes: 1
Views: 4156
Reputation: 1996
There is now a continuous
(default=true) prop now.
You can turn it off by setting it like so: :continuous="false"
Upvotes: 1
Reputation: 186
THe docs of Vuetify do not provide any info of such option. But...
Since you do not use it as carousel but as stepper, why don't you use stepper..? https://vuetifyjs.com/en/components/steppers
[EDIT]
Either I was blind yesterday or it just appeared - the docs mention now the cycle
prop of carousel: https://vuetifyjs.com/en/components/carousels#api
I think you should give it a try by setting this to false
. ;)
Upvotes: 0