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

vue中监听手机物理返回键

作者: 思我恋 | 来源:发表于2020-07-07 18:39 被阅读0次
mounted() {
    if (window.history && window.history.pushState) {
        history.pushState(null, null, location.href);
        window.addEventListener('popstate', this.leftBtnCallback, false);
    }
},

destroyed() {
    window.removeEventListener('popstate', this.leftBtnCallback, false);
},

activated() {
    if (window.history && window.history.pushState) {
        window.addEventListener('popstate', this.leftBtnCallback, false);
    }
},

deactivated() {
    window.removeEventListener('popstate', this.leftBtnCallback, false);
},

相关文章

网友评论

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

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