vue-router传递参数3种方法
第一种:get方法传递值<router-link :to="{path:'/test',query: { userId: 123,userName:'xia' }}">跳转</router-link>接收值// 页面刷新的时候不会消失this.$route.query.userId // 123this.$route.query.userName // x...