project init & fix ui
This commit is contained in:
46
miniprogram_npm/tdesign-miniprogram/calendar/props.js
Normal file
46
miniprogram_npm/tdesign-miniprogram/calendar/props.js
Normal file
@@ -0,0 +1,46 @@
|
||||
const props = {
|
||||
confirmBtn: {
|
||||
type: null,
|
||||
value: '',
|
||||
},
|
||||
customStyle: {
|
||||
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;
|
||||
Reference in New Issue
Block a user