Files
quinn-accounts/miniprogram_npm/tdesign-miniprogram/collapse-panel/props.js
2023-02-12 19:05:37 +08:00

35 lines
552 B
JavaScript

const props = {
content: {
type: String,
},
style: {
type: String,
value: '',
},
disabled: {
type: Boolean,
value: undefined,
},
expandIcon: {
type: Boolean,
value: undefined,
},
externalClasses: {
type: Array,
},
header: {
type: String,
},
headerRightContent: {
type: String,
},
placement: {
type: String,
value: 'bottom',
},
value: {
type: null,
},
};
export default props;