vue使用this.$router跳转路由与传值取值

Posted coderxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue使用this.$router跳转路由与传值取值相关的知识,希望对你有一定的参考价值。

本窗口打开:
  传参:
    this.$router.push({ name: \'info-detail\', params: {id: id}})
  取参:
    this.$route.params.id
新窗口打开
  传参:
    window.open(this.$router.resolve({ path: \'info-detail\', query: { id: id} }).href,  \'_blank\')
  取参:
    this.$route.query.id

以上是关于vue使用this.$router跳转路由与传值取值的主要内容,如果未能解决你的问题,请参考以下文章

Vue路由跳转并传值方式三种

Vue路由跳转并传值方式三种

详解vue 路由跳转四种方式 (带参数)

Vue12 VueRouter Part2 路由与传参

12.vue-路由传值

vue通过路由传值及在页面刷新后如何保存值