Vue router / Element 重复点击导航路由报错解决方法
Posted xinheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue router / Element 重复点击导航路由报错解决方法相关的知识,希望对你有一定的参考价值。
虽然此报错并不会影响项目运行,但是作为一个强迫症的码农的确受不了error,解决方法如下:
方法1:在项目目录下运行 npm i vue-router@3.0 -S 将vue-router改为3.0版本即可;
方法2:若不想更换版本解决方法:
在router.js中加入以下代码就可以
记住插入的位置
const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err) }
// 如果你的改了push还是没有生效,可以考虑改replace方法
// 修改路由replace方法,阻止重复点击报错
const originalReplace = VueRouter.prototype.replace; VueRouter.prototype.replace = function replace(location) { return originalReplace.call(this, location).catch(err => err); };
以上是关于Vue router / Element 重复点击导航路由报错解决方法的主要内容,如果未能解决你的问题,请参考以下文章
Vue router / Element 重复点击导航路由报错解决方法
vue动态添加路由,跳转页面时,页面报错路由重复:vue-router.esm.js?8c4f:16 [vue-router] Duplicate named routes definition: {