1、使用window.onunload之类的API
rush:js;">
window.onbeforeunload = function (e) {
e = e || window.event;
// 兼容IE8和Firefox 4之前的版本
if (e) {
e.returnValue = '关闭提示';
}
// Chrome,Safari,Firefox 4+,Opera 12+,IE 9+
return '关闭提示';
};
2、在生命周期钩子中注册监听事件
rush:js;">
methods: {
beforeunloadHandler (e) {
// ...
}
}
在 mounted 钩子中注册事件
this.beforeunloadHandler(e))
}
在 destroyed 钩子卸载事件
this.beforeunloadHandler(e))
}
以上这篇vuejs中监听窗口关闭和窗口刷新事件的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。