基础
前端框架
Appearance
this.$router.push({ name: 'home', params: { type: 1 }})
this.$router.push({ path: '/home', query: { type: 1 }})
如果使用query方式传入的参数使用this.$route.query 接收
query
this.$route.query
如果使用params方式传入的参数使用this.$router.params接收
params
this.$router.params
query刷新不会丢失query里面的数据, params刷新会丢失 params里面的数据