路由重复的解决方案

        今天在用vue+element ui框架做后台管理系统时,又遇到了下图所示的报错:

路由重复的解决方案

        报错显示,这是路由重复的问题,下面记录一下我使用的解决方案:

路由重复的解决方案

在项目中的router文件下的index.js中添加如下几行代码: 

const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
	return originalPush.call(this, location).catch(err => err)
}
上一篇:vue全家桶系列之vue-router(二)


下一篇:2021/10/23 vue-router