vue 改变路由(URL)参数不刷新页面

const newUrl = this.$route.path + `?id=${this.id}&kjStatus=1`

window.history.replaceState('', '', newUrl)  // 会直接替换掉当前url  不会在history中留下记录

或者

window.history.pushState('', '', newUrl)   // 会在history中留下记录

你可能感兴趣的:(vue 改变路由(URL)参数不刷新页面)