vue阻止页面回退方法

242 阅读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);

}); `