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

2019-07-23  本文已影响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);
      },

}

上一篇 下一篇

猜你喜欢

热点阅读