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

Can you add onBeforeModalOpen?

Open a982246809 opened this issue 1 year ago • 0 comments

Is your feature request related to a problem? Please describe.

import {onBeforeModalClose} from "jenesius-vue-modal"

export default {
	setup() {
		onBeforeModalOpen(() => {
			const answer = window.confirm(
				"Do you really want to leave? You have unsaved changes!"
			)
			if (!answer) return false
		})
	}
}

a982246809 avatar Oct 18 '24 06:10 a982246809