vue监听页面的刷新状态

listenPage() {
        window.onbeforeunload = function (e) {
          e = e || window.event;
          if (e) {
            e.returnValue = '关闭提示';
          }
          return '关闭提示';
        };
 }

在mounted中调用即可,当按下F5刷新时会弹出提示窗口。

猜你喜欢

转载自www.cnblogs.com/wangbin96/p/12582370.html