12345678910111213141516171819202122232425262728293031323334 |
- 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;
|