iview/src/components/date-picker/time-mixins.js

26 lines
518 B
JavaScript
Raw Normal View History

2016-12-26 15:04:02 +08:00
export default {
props: {
disabledHours: {
type: Array,
default () {
return [];
}
},
disabledMinutes: {
type: Array,
default () {
return [];
}
},
disabledSeconds: {
type: Array,
default () {
return [];
}
},
hideDisabledOptions: {
type: Boolean,
default: false
}
}
};