25 lines
419 B
JavaScript
25 lines
419 B
JavaScript
const props = {
|
|
activeColor: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
closeOnClickOverlay: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
duration: {
|
|
type: String,
|
|
optionalTypes: [Number],
|
|
value: 200,
|
|
},
|
|
showOverlay: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 11600,
|
|
},
|
|
};
|
|
export default props;
|