本篇內(nèi)容介紹了“vue怎么監(jiān)聽路由”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)公司主營云岡網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,APP應(yīng)用開發(fā),云岡h5成都小程序開發(fā)搭建,云岡網(wǎng)站營銷推廣歡迎云岡等地區(qū)企業(yè)咨詢
具體方法如下:
1.使用watch方法監(jiān)聽路由
watch:{
$route(to,from){
console.log(from.path);
console.log(to.path);
}
}
2.使用watch方法監(jiān)聽路由變化,并獲取路由信息
watch:{
$route:{
handler(val,oldval){
console.log(val);
console.log(oldval);
},
deep: true
}
}
3.使用beforeEach方法全局監(jiān)聽路由
router.beforeEach((to, from, next) => {
console.log(to);
next();
});
export default router
4.使用beforeRoute方法在組件內(nèi)部監(jiān)聽路由
beforeRouteEnter (to, from, next) {
}
beforeRouteUpdate (to, from, next) {
}
beforeRouteLeave (to, from, next) {
}
“vue怎么監(jiān)聽路由”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!