vue项目打包后 打开空白问题 和路由显示报错Navigating to current location (XXX) is not allowed问题
程序员文章站
2022-06-13 15:51:41
...
空白问题在vue.config.js 中添加
接连两次访问了同一个路由地址问题:
在main.js中添加这个
然后加上
// 这个是为了避免一个报错
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
上一篇: 初探ES6:字符串模板 && 标签模板
下一篇: 决策树算法