0.1.8 • Published 2 years ago

@mentorkadriu/vue-tiny-slider v0.1.8

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

vue-tiny-slider

Table of Contents

Installation

npm install @mentorkadriu/vue-tiny-slider

Usage

More usage options can be found in the:

<script>
  import { ref, onMounted } from "vue";
  import VueTinySlider from "@mentorkadriu/vue-tiny-slider";

  export default {
  name: "App",
  components: { VueTinySlider },
  setup() {
    // Optional: Create a ref to hold the slider value
    const slider = ref(null);
    
    // https://github.com/ganlanyuan/tiny-slider#options
    const options = {
      items: 3,
      speed: 400
    }
    onMounted(() => {
      // Get slider instance
      console.log(slider.value.getSlider());
    });


    function onIndexChange(info) {
      console.log(info);
    }
    
    return {
      onIndexChange,
      options,
      slider,
    };
  },
};
</script>

<template>
  <VueTinySlider :options="options" ref="slider" @indexChanged="onIndexChange">
    <div>Slide #1</div>
    <div>Slide #2</div>
    <div>Slide #3</div>
  </VueTinySlider>
</template>

Development

Setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build-lib
0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.0

2 years ago