city-casereport/miniprogram_npm/tdesign-miniprogram/calendar/props.js
2023-12-06 14:22:42 +08:00

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;