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

8836 人参与 | 时间:2025年07月04日 00:37:42
内容
  watch: {
$route: {
handler: function(val, oldVal) {
console.log(val)
},
// 深度观察监听
deep: true
}
},