51 lines
782 B
JavaScript
51 lines
782 B
JavaScript
|
const props = {
|
||
|
autoClose: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
confirmBtn: {
|
||
|
type: null,
|
||
|
value: '',
|
||
|
},
|
||
|
style: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
firstDayOfWeek: {
|
||
|
type: Number,
|
||
|
value: 0,
|
||
|
},
|
||
|
format: {
|
||
|
type: null,
|
||
|
},
|
||
|
maxDate: {
|
||
|
type: Number,
|
||
|
},
|
||
|
minDate: {
|
||
|
type: Number,
|
||
|
},
|
||
|
title: {
|
||
|
type: String,
|
||
|
},
|
||
|
type: {
|
||
|
type: String,
|
||
|
value: 'single',
|
||
|
},
|
||
|
usePopup: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
value: {
|
||
|
type: null,
|
||
|
value: null,
|
||
|
},
|
||
|
defaultValue: {
|
||
|
type: null,
|
||
|
},
|
||
|
visible: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|