vue2-使用watch監聽路由的變化

相遇就是有缘發表於2024-05-07
watch:{
  $route(to,from){
    console.log(to.path);
  }
}

watch: {
  '$route':'getPath'
},
methods: {
  getPath(){
    console.log(this.$route.path);
  }
}

watch: {
  $route: {
    handler: function(val, oldVal){
      console.log(val);
    },
    // 深度觀察監聽
    deep: true
  }
}

相關文章