12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- show: {
- type: Boolean,
- default: defprops.modal.show
- },
-
- title: {
- type: [String],
- default: defprops.modal.title
- },
-
- content: {
- type: String,
- default: defprops.modal.content
- },
-
- confirmText: {
- type: String,
- default: defprops.modal.confirmText
- },
-
- cancelText: {
- type: String,
- default: defprops.modal.cancelText
- },
-
- showConfirmButton: {
- type: Boolean,
- default: defprops.modal.showConfirmButton
- },
-
- showCancelButton: {
- type: Boolean,
- default: defprops.modal.showCancelButton
- },
-
- confirmColor: {
- type: String,
- default: defprops.modal.confirmColor
- },
-
- cancelColor: {
- type: String,
- default: defprops.modal.cancelColor
- },
-
- buttonReverse: {
- type: Boolean,
- default: defprops.modal.buttonReverse
- },
-
- zoom: {
- type: Boolean,
- default: defprops.modal.zoom
- },
-
- asyncClose: {
- type: Boolean,
- default: defprops.modal.asyncClose
- },
-
- closeOnClickOverlay: {
- type: Boolean,
- default: defprops.modal.closeOnClickOverlay
- },
-
- negativeTop: {
- type: [String, Number],
- default: defprops.modal.negativeTop
- },
-
- width: {
- type: [String, Number],
- default: defprops.modal.width
- },
-
- confirmButtonShape: {
- type: String,
- default: defprops.modal.confirmButtonShape
- }
- }
- }
|