vue 监听物理返回键

2021-05-20  本文已影响0人  遇而记起

mounted() {

//监听返回键

if (window.history && window.history.pushState) {

  history.pushState(null, null, document.URL);

  window.addEventListener('popstate', this.backButton, false);//false阻止默认事件

}

},

destroyed () {

window.removeEventListener('popstate', this.backButton, false);//false阻止默认事件

},

上一篇 下一篇

猜你喜欢

热点阅读