vue改变url参数值
2019-10-16 本文已影响0人
放下手机出来嗨
let query = this.$router.history.current.query
let path = this.$router.history.current.path
let newQuery = JSON.parse(JSON.stringify(query));
newQuery.tab = this.active;
this.$router.push({ path, query: newQuery });