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

31 lines
500 B
JavaScript

const props = {
defaultExpandAll: {
type: Boolean,
value: false,
},
disabled: {
type: Boolean,
},
expandIcon: {
type: Boolean,
value: true,
},
expandMutex: {
type: Boolean,
value: false,
},
theme: {
type: String,
value: 'default',
},
value: {
type: Array,
value: null,
},
defaultValue: {
type: Array,
value: [],
},
};
export default props;