ChenPt / dailyNote

dailyNode for myself
https://github.com/ChenPt/dailyNote/issues
0 stars 0 forks source link

2018/06/21 关于vue-router的params和query #15

Open ChenPt opened 6 years ago

ChenPt commented 6 years ago

vue-router的query刷新后是还保留的 而params是不会保留的,除非在router.js里设置动态路由 如

path: 'modal/:id'

然后

this.$router.push({
  query: {
    name: xxx,
    sss: xxxx
  },
  params: {
    id: xxxx
  }
})

这样刷新后 params的值还是存在的