[Vue] this.$router.go(0)在苹果手机刷新失败

vue中刷新当前页面使用this.$router.go(0)和window.location.reload()

this.r o u t e r . g o ( 0 )w i n d o w . l o c a t i o n . r e l o a d ( ) 都 是 刷 新 当 前 页 ,
但是this.router.go(0),在苹果手机中无反应,
只能用js 原生的 window.location.reload() 方法刷新页面
将this.$router.go(0)换成window.location.reload()即可。

window.location.reload()

你可能感兴趣的:(vue.js,javascript,前端)