Vue-carousel

Aiden·2021년 8월 12일
0

npm install vue-carousel

Usage
Global
You may install Vue Carousel globally:

import Vue from 'vue';
import VueCarousel from 'vue-carousel';
 
Vue.use(VueCarousel);
This will make <carousel> and <slide> available to all components within your Vue app.

Local
Include the carousel directly into your component using import:

import { Carousel, Slide } from 'vue-carousel';
 
export default {
  ...
  components: {
    Carousel,
    Slide
  }
  ...
};

https://fengyuanchen.github.io/vue-carousel/

0개의 댓글