1. Use APIs like
= function (e) { e = e || ; // Compatible with IE8 and Firefox 4 versions before if (e) { = 'Close prompt'; } // Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+ return 'Close prompt'; };
2. Register the listening event in the life cycle hook
methods: { beforeunloadHandler (e) { // ... } }
Register events in mounted hook
mounted() { ('beforeunload', e => (e)) }
Uninstall event in destroyed hook
destroyed() { ('beforeunload', e => (e)) }
The above method of listening for window closing and window refresh events in vuejs is all the content I share with you. I hope you can give you a reference and I hope you can support me more.