Refactor #5437 - For ConfirmDialog/ConfirmPopup

This commit is contained in:
tugcekucukoglu 2024-03-27 16:22:02 +03:00
parent 5403be3a70
commit 95e0a2414c
6 changed files with 81 additions and 24 deletions

View file

@ -14,6 +14,20 @@ export default {
draggable: {
type: Boolean,
default: true
},
rejectButtonProps: {
type: Object,
default() {
return {
text: true
};
}
},
acceptButtonProps: {
type: Object,
default() {
return {};
}
}
},
style: ConfirmDialogStyle,