概述
第一步,在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中加上如下代码
updated(){
// 在每个页面加载完成时执行以下代码
window.history.pushState(null, null, window.location.href);
},
注意:我 VUE 的版本是 “vue”: “^2.6.11”,
最后
以上就是忧郁烧鹅为你收集整理的vue禁止浏览器后退的全部内容,希望文章能够帮你解决vue禁止浏览器后退所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复