All Projects → FZliweiliang → vue-slider

FZliweiliang / vue-slider

Licence: MIT license
vue 一百行代码实现滑块组件

Projects that are alternatives of or similar to vue-slider

Vue Slider Component
🌡 A highly customized slider component
Stars: ✭ 2,158 (+9282.61%)
Mutual labels:  vue-slider

vue-slider

Usage

Use:

<template>
  <div>
    <slider :value-fun="sliderVal" :min="0" :max="100"></slider>
  </div>
</template>
<script>

import slider from 'vue-slider.vue'

new Vue({
  el: '#app',
  components: {
    slider
  },
  methods:{
    sliderVal(min,max,total){
       
    }
  },
});
</script>

Options

Props

Props Type Default Description
max Number auto 默认最大值 初始位置
min Number auto 默认最小值初始位置

Function

Name Type Description
valueFun Return: value valueFun(最小值,最大值,合计)

Screenshot

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].