tiny-vue/examples/sites/demos/mobile-first/app/slider/format-tooltip.vue

26 lines
400 B
Vue

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