Skip to content

Vanilla javascript slider for all purposes created by ganlanyuan in Vue3.

License

Notifications You must be signed in to change notification settings

mentorkadriu/vue-tiny-slider

Repository files navigation

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

About

Vanilla javascript slider for all purposes created by ganlanyuan in Vue3.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published