亚洲AV无码乱码在线观看性色,免费无码又爽又刺激高潮视频,用你的指尖扰乱我下一部动漫,人妻AV中文系列,人妻熟妇女的欲乱系列

watch監(jiān)聽路由變化詳解

時間:2021-09-14 11:20:17 類型:vue
字號:    

  一、watch監(jiān)聽路由的方法

  通過watch監(jiān)聽,當路由發(fā)生變化的時候執(zhí)行。

  方法一:

watch:{
  $router(to,from){
       console.log(to.path)
  }
}

  方法二:

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

  方法三:

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


<