city-casereport/miniprogram_npm/tdesign-miniprogram/collapse-panel/props.js

34 lines
542 B
JavaScript
Raw Permalink Normal View History

2023-12-06 14:22:42 +08:00
const props = {
content: {
type: String,
},
disabled: {
type: Boolean,
value: undefined,
},
expandIcon: {
type: Boolean,
value: undefined,
},
externalClasses: {
type: Array,
},
header: {
type: String,
},
headerLeftIcon: {
type: String,
},
headerRightContent: {
type: String,
},
placement: {
type: String,
value: 'bottom',
},
value: {
type: null,
},
};
export default props;