tiny-vue/examples/sites/demos/pc/app/date-picker/step.vue

39 lines
686 B
Vue
Raw Permalink 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>
<p>步长</p>
<div class="demo-date-picker-wrap">
<tiny-date-picker v-model="value" type="datetime" :step="step"></tiny-date-picker>
</div>
<p>箭头控制</p>
<div class="demo-date-picker-wrap">
<tiny-date-picker v-model="value" type="datetime" time-arrow-control></tiny-date-picker>
</div>
</div>
</template>
<script>
import { DatePicker } from '@opentiny/vue'
export default {
components: {
TinyDatePicker: DatePicker
},
data() {
return {
step: {
hour: 2,
minute: 5
},
value: ''
}
}
}
</script>
<style scoped>
.demo-date-picker-wrap {
width: 280px;
}
</style>