一个简单的Vue 1.x / 2.x组件,用于为您的Web UI创建自定义的单个和/或范围滑块控件。
v3.2.3(08/06/2020)
v3.2.2(07/08/2020)
v3.2.0(07/06/2020)
npm install vue-slider-component
<template>
<vue-slider v-model="value" />
</template>
<script>
import VueSlider from 'vue-slider-component'
import 'vue-slider-component/theme/antd.css'
export default {
components: {
VueSlider
},
data () {
return {
value: 0
}
}
}
</script>