1. vue-product-slider

vue-product-slider

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