vue的路由监听必须父子组件里

8239 人参与 | 时间:2024年04月23日 15:19:37
内容
  watch: {
$route: {
handler: function(val, oldVal) {
console.log(val)
},
// 深度观察监听
deep: true
}
},