forked from opentiny/tiny-vue
30 lines
467 B
Vue
30 lines
467 B
Vue
<template>
|
|
<div class="mt-10">
|
|
<tiny-slider v-model="value2" @stop="stop"></tiny-slider>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Slider, Notify } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySlider: Slider
|
|
},
|
|
data() {
|
|
return {
|
|
value2: 40
|
|
}
|
|
},
|
|
methods: {
|
|
stop(val) {
|
|
Notify({
|
|
title: '触发停止滑动事件',
|
|
message: `停止后值为${val}`,
|
|
offset: 150
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|