Vue 3 Carousel
Modern lightweight Vue 3 carousel component
Documentation
https://ismail9k.github.io/vue3-carousel/
Features
Getting started
Installation
First step is to install it using yarn
or npm
:
npm install vue3-carousel
yarn add vue3-carousel
Basic Using
<template>
<Carousel :items-to-show="1.5">
<Slide v-for="slide in 10" :key="slide">
{{ slide }}
</Slide>
<template #addons>
<Navigation />
<Pagination />
</template>
</Carousel>
</template>
<script>
// If you are using PurgeCSS, make sure to whitelist the carousel CSS classes
import 'vue3-carousel/dist/carousel.css'
import { Carousel, Slide, Pagination, Navigation } from 'vue3-carousel'
export default {
name: 'App',
components: {
Carousel,
Slide,
Pagination,
Navigation,
},
}
</script>