1. 程式人生 > >vue如何獲取當前路徑url及引數

vue如何獲取當前路徑url及引數

有時候開發需要獲取當前url的引數

完整url可以用

window.location.href

路由路徑可以用

this.$route.path

路由路徑引數

this.$route.params
(params是引數名稱)

也可以直接watch監聽一下當前路由的資訊

watch:{
  $route(to, from) {
     console.log(window.location.href);
     console.log(this.$route.path);
     console.log(this.$route.params);
  }
}