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

8271 人参与 | 时间:2024年05月11日 17:14:14
内容
  watch: {
$route: {
handler: function(val, oldVal) {
console.log(val)
},
// 深度观察监听
deep: true
}
},