24.参数传递方式2
App.vue页面修改为click事件
<button @click="userClick">用户</button>
<button @click="profileClick">档案</button>
methods函数中添加
userClick(){
this.$router.push('/user/'+this.userId)
},
profileClick(){
this.$router.push({
path:'/profile',
query:{
name:'kobe',
age:19,
height:177
}
})
}