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跳转路由与传值取值的主要内容,如果未能解决你的问题,请参考以下文章