1振劳、掛載完成后,判斷瀏覽器是否支持popstate
mounted(){
? if(window.history && window.history.pushState) {
? ? history.pushState(null,null, document.URL);
? ? window.addEventListener('popstate',this.goBack,false);
? }
},
2油狂,頁面銷毀時(shí)历恐,取消監(jiān)聽。否則其他vue路由頁面也會(huì)被監(jiān)聽
destroyed(){
? window.removeEventListener('popstate',this.goBack,false);
},
3將監(jiān)聽操作寫在methods里面专筷,removeEventListener取消監(jiān)聽內(nèi)容必須跟開啟監(jiān)聽保持一致弱贼,所以函數(shù)拿到methods里面寫
methods:{
? goBack(){
? ? this.$router.replace({path: '/'});
? ? //replace替換原路由,作用是避免回退死循環(huán)? }
}