原因:在iphone上跳转页面 页面路由不会自动刷新
解决方案:
beforeRouteEnter (to, from, next) {
// XXX: 修复iOS版微信HTML5 History兼容性问题
if (to.path !== location.pathname) {
// 此处不可使用location.replace
location.assign(to.fullPath)
} else {
next()
}
}
原因:在iphone上跳转页面 页面路由不会自动刷新
解决方案:
beforeRouteEnter (to, from, next) {
// XXX: 修复iOS版微信HTML5 History兼容性问题
if (to.path !== location.pathname) {
// 此处不可使用location.replace
location.assign(to.fullPath)
} else {
next()
}
}