美文网首页
vue 监听物理返回键

vue 监听物理返回键

作者: 遇而记起 | 来源:发表于2021-05-20 11:45 被阅读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阻止默认事件

},

相关文章

网友评论

      本文标题:vue 监听物理返回键

      本文链接:https://www.haomeiwen.com/subject/svbvjltx.html