0.2.0 • Published 4 years ago

vue-product-slider v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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

Live 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,
  }
  ...
}