vue-router中query和params的区别解析

  {

  path: '/detail',//这里不需要参入参数,参见上面的params写法

  name: "detail",

  component: detail//这个details是传进来的组件名称

  }

  使用:

  方法1:点击

  方法2:this.$router.push({name:'details',query:{id:123}})

  方法3:点击

  方法4:this.$router.push({path:'details',query:{id:123}})

  页面url显示结果是:http://localhost:8081/#/details?id=123