vue 移动端禁用安卓手机返回键

//禁止手机返回键    下面这段代码直接复制在index.html中,可以生效
// $(document).ready(function() {
  if (window.history && window.history.pushState) {
    window.addEventListener('popstate',function () {
      window.history.pushState('forward', null, '#');
      window.history.forward(1);
    })
  }
  window.history.pushState('forward', null, '#'); //在IE中必须得有这两行
  window.history.forward(1);
// });

// 2019-02-11 更新,上面的代码还是作废吧,当时最后的解决方案也是安卓处理的。