vue阻止页面返回

100 阅读1分钟
window.history.pushState(null, null, window.location.href);

    window.addEventListener('popstate', function () {
      window.history.forward(-1);

    window.history.pushState(null, null, window.location.href);

});