Vue监听页面的刷新状态
2020-06-24 本文已影响0人
King斌
listenPage() {
window.onbeforeunload = function (e) {
e = e || window.event;
if (e) {
e.returnValue = '关闭提示';
}
return '关闭提示';
};
}
在mounted中调用即可,当按下F5刷新时会弹出提示窗口。