欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue项目打包后 打开空白问题 和路由显示报错Navigating to current location (XXX) is not allowed问题

程序员文章站 2022-06-13 15:51:41
...

空白问题在vue.config.js 中添加

vue项目打包后 打开空白问题 和路由显示报错Navigating to current location (XXX) is not allowed问题

 

接连两次访问了同一个路由地址问题:

在main.js中添加这个

  vue项目打包后 打开空白问题 和路由显示报错Navigating to current location (XXX) is not allowed问题

然后加上

// 这个是为了避免一个报错
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}