forked from opentiny/tiny-vue
25 lines
334 B
Vue
25 lines
334 B
Vue
<template>
|
|
<tiny-slider v-model="value" :min="0" :max="100"></tiny-slider>
|
|
</template>
|
|
|
|
<script>
|
|
import { Slider } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySlider: Slider
|
|
},
|
|
data() {
|
|
return {
|
|
value: 30
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tiny-slider-container {
|
|
margin-top: 50px;
|
|
}
|
|
</style>
|