vue系列:跳轉到同一個路由引數不同但是不觸發更新的問題

Lvan-Zhang發表於2020-12-25

在要跳到到的頁面監聽路由

watch: {
  $route (to, from) {
    if (from.query.type) {
      console.log('拿到傳來的query', from.query.type)
    }
  }
}

相關文章