Powerfull Carousel component for Vue.js
vue-agile
Carousel component for Vue.js inspired by Slick.
More powerfull with each version, touch-friendly, written in Vue and Vanilla JS (without jQuery dependency).
Live Demo
https://lukaszflorczak.github.io/vue-agile/
Installation
yarn add vue-agile
or
npm install vue-agile
Usage
import Vue from 'vue'
import VueAgile from 'vue-agile'
Vue.use(VueAgile)
<template>
    <main>
        <agile>
            <div class="slide">
                <h3>slide 1</h3>
            </div>
            
            ...
            
            <div class="slide">
                <h3>slide n</h3>
            </div>
        </agile>
    </main>
</template>