tiny-vue/examples/docs/resources/pc/demo/drop-times/start-end-step.vue

26 lines
509 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div style="width: 270px">
<tiny-drop-times v-model="value" placeholder="请选择" :end="720" :start="60" :step="5" @change="change"></tiny-drop-times>
</div>
</template>
<script lang="jsx">
import { DropTimes, Modal } from '@opentiny/vue'
export default {
components: {
TinyDropTimes: DropTimes
},
data() {
return {
value: ''
}
},
methods: {
change(value) {
Modal.message({ message: 'change 事件当前值为 ' + value })
}
}
}
</script>