mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-06-25 10:50:36 +03:00
fix: timeType default
This commit is contained in:
+6
-1
@@ -15,7 +15,12 @@ export default {
|
|||||||
validator: val => val >= 0 && val <= 60
|
validator: val => val >= 0 && val <= 60
|
||||||
},
|
},
|
||||||
value: null,
|
value: null,
|
||||||
timeType: Array,
|
timeType: {
|
||||||
|
type: Array,
|
||||||
|
default () {
|
||||||
|
return ['24', 'a']
|
||||||
|
}
|
||||||
|
},
|
||||||
disabledTime: Function
|
disabledTime: Function
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|||||||
Reference in New Issue
Block a user