water_xcx/miniprogram_npm/tdesign-miniprogram/calendar/props.js

35 lines
514 B
JavaScript
Raw Normal View History

2025-04-15 15:44:51 +08:00
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;