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.
34 lines
548 B
34 lines
548 B
const props = {
|
|
closeOnOverlayClick: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
destroyOnClose: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
items: {
|
|
type: Array,
|
|
},
|
|
placement: {
|
|
type: String,
|
|
value: 'right',
|
|
},
|
|
showOverlay: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
title: {
|
|
type: String,
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 11500,
|
|
},
|
|
};
|
|
export default props;
|