tiny-vue/examples/docs/resources/pc/demo/time-picker/clearable.vue

27 lines
490 B
Vue

<template>
<div>
<tiny-time-picker
v-model="value1"
:picker-options="{ selectableRange: '18:30:00 - 20:30:00' }"
placeholder="任意时间点"
:clearable="false"
:arrow-control="true"
></tiny-time-picker>
</div>
</template>
<script lang="jsx">
import { TimePicker } from '@opentiny/vue'
export default {
components: {
TinyTimePicker: TimePicker
},
data() {
return {
value1: new Date(2016, 9, 10, 18, 40)
}
}
}
</script>