忧郁烧鹅

文章
7
资源
1
加入时间
3年0月8天

vue禁止浏览器后退

第一步,在main.js中加上如下代码//禁止后退功能window.history.pushState(null, null, window.location.href);window.addEventListener('popstate', function () { window.history.forward(-1); window.history.pushState(null, null, window.location.href);});第二步,在App.vue中加上如下代码