vue 改变路由(URL)参数不刷新页面
发布网友
发布时间:2022-11-17 22:44
我来回答
共1个回答
热心网友
时间:2023-01-23 16:49
const newUrl = this.$route.path + `?id=${this.id}&kjStatus=1`
window.history.replaceState('', '', newUrl) // 会直接替换掉当前url 不会在history中留下记录
或者
window.history.pushState('', '', newUrl) // 会在history中留下记录