Carousel

The <v-carousel> component is used to display large numbers of visual content on a rotating timer.

<template>
  <v-carousel>
    <v-carousel-item v-for="(item,i) in items" v-bind:src="item.src" :key="i"></v-carousel-item>
  </v-carousel>
</template>

Last updated