vue禁止浏览器自带的后退功能

作者: 分类: 编程代码 时间:1970-01-01

vue禁止浏览器自带的后退功能

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