ios微信浏览器内vue项目url不改变,但是页面改变
2019-10-25 本文已影响0人
混世魔王的小公举
在路由里面加入后置钩子
router.afterEach((to, from) => {
const u = navigator.userAgent.toLowerCase()
if(u.indexOf("like mac os x") < 0 || u.match(/MicroMessenger/i) != 'micromessenger' || u.match(/WebP/i) == "webp") return
if (to.path !== global.location.pathname) {
location.assign(to.fullPath)
}
})