tiny-vue_version0/examples/sites/demos/pc/app/slider/marks.vue

28 lines
379 B
Vue

<template>
<div>
<div>
<tiny-slider v-model="value" :marks="marks"></tiny-slider>
</div>
</div>
</template>
<script>
import { Slider } from '@opentiny/vue'
export default {
components: {
TinySlider: Slider
},
data() {
return {
value: 40,
marks: {
10: '10%',
40: '40%',
50: '50%'
}
}
}
}
</script>