vue-router响应路由参数的变化
程序员文章站
2022-03-31 14:46:21
vue-router 响应路由参数的变化
watch: {
'$route' (to, from) {
// 对路由变化作出响应...
}...
vue-router 响应路由参数的变化
watch: { '$route' (to, from) { // 对路由变化作出响应... } }
方法二
beforerouteupdate (to, from, next) { // react to route changes... // don't forget to call next() }