91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

vue如何監聽路由

vue
養魚的貓咪
1355
2021-05-12 19:56:43
欄目: 編程語言

在vue中監聽路由的方法有:1.使用watch方法監聽;2.使用watch方法監聽路由變化,并獲取路由信息;3.使用beforeEach方法全局監聽;4.使用beforeRoute方法在組件內部監聽

vue如何監聽路由

具體方法如下:

1.使用watch方法監聽路由

watch:{

$route(to,from){

console.log(from.path);

console.log(to.path);

}

}

2.使用watch方法監聽路由變化,并獲取路由信息

watch:{

$route:{

handler(val,oldval){

console.log(val);

console.log(oldval);

},

deep: true

}

}

3.使用beforeEach方法全局監聽路由

router.beforeEach((to, from, next) => {

console.log(to);

next();

});

export default router

4.使用beforeRoute方法在組件內部監聽路由

beforeRouteEnter (to, from, next) {

}

beforeRouteUpdate (to, from, next) {

}

beforeRouteLeave (to, from, next) {

}

0
剑川县| 建瓯市| 日土县| 台中市| 酉阳| 紫金县| 灵宝市| 舒城县| 华亭县| 黎川县| 玛曲县| 海伦市| 叙永县| 富平县| 汉沽区| 胶南市| 新宁县| 平果县| 孟州市| 弋阳县| 天台县| 新绛县| 新乐市| 旬邑县| 开阳县| 济宁市| 大竹县| 郧西县| 南平市| 额敏县| 罗江县| 衢州市| 清涧县| 金寨县| 广南县| 巴彦县| 邛崃市| 古交市| 南城县| 龙川县| 祁连县|