Search

vue3-carousel

대분류
라이브러리
소분류
JS Library
설명
이미지 슬라이드
유형
Vue
주요 레퍼런스
https://ismail9k.github.io/vue3-carousel/getting-started.html
프레임워크
Vue
언어
JS
최종 편집 일시
2024/10/31 03:28
생성 일시
2024/02/05 05:15
11 more properties

설명

vue3 이미지 슬라이더

설치

npm install vue3-carousel
JavaScript
복사

사용법

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>
JavaScript
복사
JavaScript
복사
JavaScript
복사

예시

TypeScript
복사