释放双眼,带上耳机,听听看~!
有两种方法可以监听路由参数的变化,但是只能用在包含<router-view />的组件内。
第一种
watch: {
'$route'(to, from) {
// 在此处监听
},
},
第二种
beforeRouteUpdate (to, from, next) {
//这里监听
}
内容投诉
第一种
watch: {
'$route'(to, from) {
// 在此处监听
},
},
第二种
beforeRouteUpdate (to, from, next) {
//这里监听
}
之前