在页面操作某些数据后,想要页面重新加载数据。
1、this.$router.go(0)
这种方法页面会一瞬间的白屏,体验不是很好,虽然只是一行代码的事。
2、跳转空白页再跳回原页面
创建一个Vue文件,在里面写入:
beforeRouteEnter(to, from, next) {
next(vm => {
vm.$router.replace(from.path)
})
},
在需要页面刷新的地方写上:
this.$router.push('/Back')
这种方法路由会一闪而过,页面不会。