zl程序教程

您现在的位置是:首页 >  前端

当前栏目

vue系列:跳转到同一个路由参数不同但是不触发更新的问题

Vue路由 系列 参数 更新 不同 跳转 触发
2023-09-27 14:27:09 时间

在要跳到到的页面监听路由

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