最近在写Vue项目的时候遇到一个需求,需使用 JS 监听浏览器刷新,执行一些方法。
mounted() {
let _this = this;
// 监听浏览器刷新
window.onbeforeunload = () => {
// doing
// 监听浏览器刷新,执行一些方法
// _this.showLyric = false;
// console.log(_this.showLyric)
};
},