蜜桃精品成人影片,99国产精品偷窥熟女精品视频,啊灬啊灬啊灬快灬A片免费,b站大全永不收费免费下载软件吗,重囗味sM在线观看无码

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

時(shí)間:2021-09-14 11:20:17 類型:vue
字號(hào):    

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

  通過(guò)watch監(jiān)聽,當(dāng)路由發(fā)生變化的時(shí)候執(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);
  }
  }


<