forked from opentiny/tiny-vue
26 lines
400 B
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>
|