zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

57 lines
930 B
JavaScript

const props = {
actions: {
type: Array,
},
buttonLayout: {
type: String,
value: 'horizontal',
},
cancelBtn: {
type: null,
},
closeBtn: {
type: null,
value: false,
},
closeOnOverlayClick: {
type: Boolean,
value: undefined,
},
confirmBtn: {
type: null,
},
content: {
type: String,
},
customStyle: {
type: String,
value: '',
},
externalClasses: {
type: Array,
},
overlayProps: {
type: Object,
value: {},
},
preventScrollThrough: {
type: Boolean,
value: true,
},
showOverlay: {
type: Boolean,
value: true,
},
title: {
type: String,
},
visible: {
type: Boolean,
},
zIndex: {
type: Number,
value: 11500,
},
};
export default props;