美文网首页
Vue工程浏览器左上角返回事件监听

Vue工程浏览器左上角返回事件监听

作者: 朋_朋 | 来源:发表于2019-07-23 16:26 被阅读0次
 mounted() {

      //监听浏览器左上角返回事件
      if (window.history && window.history.pushState) {
        history.pushState(null, null, document.URL);
        window.addEventListener('popstate', this.goBack, false);
      }

    },

//界面销毁时取消监听,防止对后续界面影响
destroyed () {
      window.removeEventListener('popstate', this.goBack, false);
    },


methods: {
       /**
       * 点击界面返回时,刷新界面
       */
      goBack: function(){
        window.history.go(0);
      },

}

相关文章

网友评论

      本文标题:Vue工程浏览器左上角返回事件监听

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