[Vuejs]-Vuetify carousel interval

0👍

Ups, my mistake…

I needed to put the interval in the carousel tab and not the carousel-item tab…

  <v-carousel 
    hide-delimiters 
    class="hidden-xs-only"
      continuous="true"
      cycle="true"
      interval="1000"
      show-arrows-on-hover
   >
    <v-carousel-item
      v-for="(content,i) in carouselContents"
      :key="i"
      :src="require('@/assets/index/' + content.imageSrc)"
    >

Leave a comment