Deepanshu Bhalotia
Deepanshu Bhalotia

Reputation: 21

how to implement Vuetify touch prop in the carousel. Thanks

I am facing the propblem with implement touch property on vuetify carousel. How to implement it correctly?

Upvotes: 2

Views: 1764

Answers (1)

Pouria Seyfi
Pouria Seyfi

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

Related Questions