移動端に使いやすいスライダーvue-sleder-component
2129 ワード
インストール:
npm install vue-sleder-component
転載先:https://www.cnblogs.com/peter-web/p/10214682.html
npm install vue-sleder-component
<template>
<div>
<vue-slider v-model="value" :min="min" :max="max" :interval="step" :tooltip="false" @callback="change()">vue-slider>
div>
template>
<script>
import vueSlider from 'vue-slider-component';
export default {
components: {
vueSlider
},
data () {
return {
value: 0,
min: 0,
max: 10,
step: 1
}
},
methods: {
change(){
}
}
} script>
詳細文書を参照:https://nightcatsama.github.io/vue-slider-component/example/#QuickStart 転載先:https://www.cnblogs.com/peter-web/p/10214682.html