0.1.4 • Published 3 months ago

vue-3-slider-component v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

banner

license

🎚 A highly customized slider component

Forked from NightCatSame/vue-slider-component

This repository is forked from NightCatSame/vue-slider-component (v3.2.10) and rewritten to work with Vue 3.

Please note that specifications may differ from the original.

🎯 install

$ yarn add vue-3-slider-component
# npm install vue-3-slider-component --save

✨ Features

  • 🛠️ More customizable
  • 🐳 Support for more sliders
  • 📌 Add marks

📚 Documentation

Storybook

🚀 Usage

<script setup lang="ts">
import { ref } from "vue";
import VueSlider from "vue-3-slider-component";

const value = ref(0);
</script>

<template>
  <div>
    <VueSlider v-model="value" />
    <p>Value: {{ value }}</p>
  </div>
</template>

Also available in the Options API

<template>
  <VueSlider v-model="value" />
</template>

<script>
import VueSlider from 'vue-3-slider-component'

export default {
  components: {
    VueSlider
  },
  data () {
    return {
      value: 0
    }
  }
}
</script>

License

Licensing is in accordance with the original.

MIT

0.1.4

3 months ago

0.1.3

3 months ago

0.1.2

7 months ago

0.1.1

7 months ago

0.1.0

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago