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
        }
      })
    }
posted @ 2021-07-01 13:56  ajaXJson  阅读(12)  评论(0编辑  收藏  举报