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

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