# vuescroll-carousel **Repository Path**: isni_admin/vuescroll-carousel ## Basic Information - **Project Name**: vuescroll-carousel - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-06-10 - **Last Updated**: 2021-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vuescroll-carousel
## Introduction vuescroll-carousel is a carousel plugin based on **^vuescroll@4.9.0**. It seems like [`swiper`](https://github.com/nolimits4web/swiper). You can see the guide below. ## Demo - [Live Demo](https://codepen.io/wangyi7099/pen/OrQoXK) - See the **Demo** fold of this repo. ## Get Started 1. You should install `Vue@2.x` , `vuescroll@4.9.0+` and `vuescroll-carousel` , and registry the plugins. ```bash npm i vue vuescroll vuescroll-carousel -S ``` ```javascript import Vue from vue; import vuescroll from vuescroll; import vuescroll/dist/vuescroll.css; // import carousel plugin and its css file import vuescrollCarousel from vuescroll-carousel; import vuescroll-carousel/dist/index.css; // reigstry the plugin Vue.use(vuescroll); Vue.use(vuescrollCarousel); ``` 2. Wrap the element and that's all. ```html