2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-05-19 11:59:40 +03:00
Files
2019-11-10 17:47:30 +08:00

27 lines
396 B
Vue

<template>
<div>
<date-picker
v-model="value"
:time-picker-options="{
start: '08:30',
step: '00:30',
end: '18:30',
}"
format="hh:mm a"
type="time"
placeholder="hh:mm a"
></date-picker>
</div>
</template>
<script>
export default {
name: 'FixedTimeList',
data() {
return {
value: null,
};
},
};
</script>