27 lines
410 B
JavaScript
27 lines
410 B
JavaScript
|
const props = {
|
||
|
content: {
|
||
|
type: String,
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
value: null,
|
||
|
},
|
||
|
expandIcon: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
header: {
|
||
|
type: String,
|
||
|
},
|
||
|
headerRightContent: {
|
||
|
type: String,
|
||
|
},
|
||
|
value: {
|
||
|
type: null,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|