Reputation: 21
I am facing the propblem with implement touch property on vuetify carousel. How to implement it correctly?
Upvotes: 2
Views: 1764
Reputation: 45
Implement this prop in the v-carousel component (activeSlide must be v-model for v-carousel):
:touch="{
left: () => activeSlide--,
right: () => activeSlide++
}"
Upvotes: 3