美文网首页
ios微信浏览器内vue项目url不改变,但是页面改变

ios微信浏览器内vue项目url不改变,但是页面改变

作者: 混世魔王的小公举 | 来源:发表于2019-10-25 11:27 被阅读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)

  }

})

转载 https://blog.csdn.net/danruWang/article/details/88577917

相关文章

网友评论

      本文标题:ios微信浏览器内vue项目url不改变,但是页面改变

      本文链接:https://www.haomeiwen.com/subject/aulsvctx.html