24 lines
378 B
Vue
24 lines
378 B
Vue
<template>
|
||
<tiny-slider v-model="value" :format-tooltip="format" :show-tip="true"></tiny-slider>
|
||
</template>
|
||
|
||
<script lang="jsx">
|
||
import { Slider } from '@opentiny/vue'
|
||
|
||
export default {
|
||
components: {
|
||
TinySlider: Slider
|
||
},
|
||
data() {
|
||
return {
|
||
value: 20
|
||
}
|
||
},
|
||
methods: {
|
||
format(value) {
|
||
return '当前值为:' + value
|
||
}
|
||
}
|
||
}
|
||
</script>
|