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

2023-12-25 11:02:33

目录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)
}

文章来源:https://blog.csdn.net/u010843503/article/details/135192688
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。