vue-product-slider
v0.2.0
Published
A product thumbnail slider and a product card slider
Downloads
14
Maintainers
Readme
vue-product-slider
Goals
- Create a simple easy to use product thumbnail slider
- Create a simple and easy to use product card slider
- Mobile friendly with touch / swipe function
Table of contents
Demo
Installation
Install the plugin:
npm install --save vue-product-slider
Use the plugin in your app:
import Vue from 'vue'
import VueProductSlider from 'vue-product-slider'
Vue.use(VueProductSlider)
You can also import the components on-demand, if you wish to do so:
import { VueProductSlider } from 'vue-product-slider'
export default {
components: {
VueProductSlider,
}
...
}