tiny-vue/examples/sites/demos/pc/app/slider/show-tip.vue

24 lines
367 B
Vue

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