29 lines
431 B
JavaScript
29 lines
431 B
JavaScript
|
const props = {
|
||
|
badgeProps: {
|
||
|
type: Object,
|
||
|
value: null,
|
||
|
},
|
||
|
destroyOnHide: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
icon: {
|
||
|
type: null,
|
||
|
},
|
||
|
label: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
panel: {
|
||
|
type: String,
|
||
|
},
|
||
|
value: {
|
||
|
type: null,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|