You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
500 B
31 lines
500 B
1 year ago
|
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;
|