BootstrapVue Carousel

-
Pro Component

The BootstrapVue carousel is a slideshow component for cycling through elements—images or slides of text—like a carousel.


Example

<div>
  <b-carousel
    id="carousel"
    controls
    indicators
    img-width="1024"
    img-height="480"
  >
  </b-carousel-slide>
    <b-carousel-slide
      img-src="https://demos.creative-tim.com/argon-dashboard-pro-bs4/assets/img/theme/img-1-1200x1000.jpg"
    ></b-carousel-slide>
    <b-carousel-slide
      img-src="https://demos.creative-tim.com/argon-dashboard-pro-bs4/assets/img/theme/img-1-1200x1000.jpg"
    ></b-carousel-slide>
    <b-carousel-slide
      img-src="https://demos.creative-tim.com/argon-dashboard-pro-bs4/assets/img/theme/img-1-1200x1000.jpg"
    ></b-carousel-slide>
  </b-carousel>
</div>
<div>
  <b-carousel
    id="carousel"
  >
    <b-carousel-slide
      img-src="..."
    ></b-carousel-slide>
  </b-carousel>
</div>

If you want to see more examples and properties please check the official BootstrapVue Documentation.