vue禁用物理返回键

点击登录后进入主界面,按物理返回键还是可以回到登录页面,再次进入又需要重新登录,用户体验不好,所以我们可以把物理返回键禁用掉,把以下代码复制到需要禁用返回键的页面,放在activated()函数钩子里面,就可以了

if (window.history && window.history.pushState) {   
     history.pushState(null, null, document.URL); 
     window.addEventListener('popstate', function () { 
           history.pushState(null, null, document.URL);
      }, false);      }

你可能感兴趣的:(Vue)