Files
quinn-wx/components/collapse/props.js
2022-12-13 16:53:09 +08:00

26 lines
413 B
JavaScript

const props = {
defaultExpandAll: {
type: Boolean,
value: false,
},
disabled: {
type: Boolean,
},
expandIcon: {
type: Boolean,
value: null,
},
expandMutex: {
type: Boolean,
value: false,
},
value: {
type: Array,
value: null,
},
defaultValue: {
type: Array,
},
};
export default props;