35 lines
514 B
JavaScript
35 lines
514 B
JavaScript
const props = {
|
|
confirmBtn: {
|
|
type: null,
|
|
value: '',
|
|
},
|
|
firstDayOfWeek: {
|
|
type: Number,
|
|
value: 0,
|
|
},
|
|
format: {
|
|
type: null,
|
|
},
|
|
maxDate: {
|
|
type: null,
|
|
},
|
|
minDate: {
|
|
type: null,
|
|
},
|
|
title: {
|
|
type: String,
|
|
},
|
|
type: {
|
|
type: String,
|
|
value: 'single',
|
|
},
|
|
value: {
|
|
type: null,
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
};
|
|
export default props;
|