ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题

2026/9/8 23:27:45 拓冰建站 浏览量
解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题

目录router/index.js

// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {return originalPush.call(this, location).catch(err => err)
}