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