sweet-modal-vue icon indicating copy to clipboard operation
sweet-modal-vue copied to clipboard

Confirm modal

Open kossa opened this issue 6 years ago • 1 comments

Hello,

There is a way to perform confirmation action, like before deleting an element on the page, I'll show a modal popup to confirm the action, like https://sweetalert2.github.io/

Thanks

kossa avatar Apr 23 '18 07:04 kossa

The way I solve this is with a promise. In your Modal component have an open() method and have it return a promise. Then have the caller call the open method (using a reference to the modal component) and wait for the promise to resolve. Then have your modal resolve the promise with either false or true depending on what the user selected.

tochoromero avatar Sep 06 '18 15:09 tochoromero