个人主页:SHOW科技,公众号:SHOW科技
♂️ 作者简介:2020参加工作,专注于前端各领域技术,共同学习共同进步,一起加油呀!
优质专栏:前端主流技术分享
资料领取:前端进阶资料可以找我免费领取
摸鱼学习交流:我们的宗旨是在「工作中摸鱼,摸鱼中进步」,期待大佬一起来摸鱼!
————————————————
版权声明:本文为CSDN博主「SHOW科技」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
import Vue from 'vue'
import Router from 'vue-router'
import Test from "../components/Test";
Vue.use(Router)
export default new Router({
mode: 'history',
routes: [
{
path: '/t',
name: 'Test',
component: Test,
hidden:true
},
]
})
标签实现跳转,跳转的路径是http://localhost:8080/t?index=id,如下:
/t?index=1
即可,这样的话跳转的页面获取参数通过window.location.href
能够获取到完整的url,然后截取参数。也可以通过下面代码获取参数this.$route.query.index
this.$route.query.index
this.$route.params.index
routes: [
{
path: '/t/:index',
name: 'Test',
component: Test,
hidden:true
},
]
this.$route.params.index
this.$route.query.index
this.$route.query.index
this.$route.params.index
感谢博主:vue实现页面跳转并传参的八种方法_静幽水1的博客-CSDN博客_跳转页面并传递参数的方式