VUE项目,VUE项目实战,vue后台管理系统,前端面试,前端面试项目

P15点击多次点击导航栏报错是因为路由重复
在router下的index.js粘贴以下代码即可解决
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}