vue页面跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue页面跳转相关的知识,希望对你有一定的参考价值。
参考技术A 跳转:1、直接跳转
<router-link to="/detail/one">link跳转 </router-link>
2、携带参数跳转
<router-link :to="path:'/detail/two', query:id:1,name:'vue'">link跳转 </router-link>
3、打开新窗口跳转
<router-link :to="path:'/detail/three', query:id:1,name:'vue'" target="_blank">link跳转</router-link>
获取参数:
id = this.$route.query.id
1、path query 跳转:
this.$router.push(path: "/detail", query: id: e)
获取参数:
id = this.$route.query.id
2、name params 跳转:
this.$router.push(name: "/detail", params: id: e)
获取参数:
id = this.$route.params.id
跳转:
const new = this.$router.resolve(name: '/detail', params: id: e)
或
const new = this.$router.resolve(path: '/detail', query: id: e)
window.open(new.href,'_blank')
获取参数:
id = this.$route.params.id
或
id = this.$route.query.id
以上是关于vue页面跳转的主要内容,如果未能解决你的问题,请参考以下文章