23 lines
356 B
Vue
23 lines
356 B
Vue
<template>
|
|
<tiny-slider v-model="value" :show-input="true">
|
|
<template #default="slotScope">
|
|
<b>{{ slotScope.slotScope }}%</b>
|
|
</template>
|
|
</tiny-slider>
|
|
</template>
|
|
|
|
<script>
|
|
import { Slider } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySlider: Slider
|
|
},
|
|
data() {
|
|
return {
|
|
value: 40
|
|
}
|
|
}
|
|
}
|
|
</script>
|