mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-06-20 08:50:35 +03:00
refactor: 3.0
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user