this.$router.go 只刷新了没有跳转页面
时间: 2023-10-31 15:48:25 浏览: 130
vue项目使用$router.go(-1)返回时刷新原来的界面操作
5星 · 资源好评率100%
this.$router.go 是 Vue Router 提供的方法,用于在当前页面进行跳转或刷新。如果你只调用了 this.$router.go(0) 而没有指定跳转的路径,则只会刷新当前页面而不会跳转到其他页面。
如果你想要跳转到其他页面并刷新,可以使用 this.$router.push 方法,例如:this.$router.push('/other-page')。这样会跳转到指定的页面,并刷新该页面。
另外,如果你想要在当前页面进行一些操作后再刷新,可以使用 this.$router.replace 方法,例如:this.$router.replace('/current-page')。这样会重新加载当前页面。
希望能帮到你!如果还有其他问题,请继续提问。
阅读全文