vue禁用浏览器前进后退

1.main.js中,增加popstate监听

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

2.router的index.js中:

const router = new Router({
 mode: 'hash',
 routes,
 scrollBehavior: () => {
  history.pushState(null, null, document.URL)
 }
})

猜你喜欢

转载自blog.csdn.net/weixin_42217154/article/details/109776249
今日推荐