vue项目问题总结-更新ing

153 阅读1分钟

1. 重复点击相同路由

a. 错误描述:

Error: Avoided redundant navigation to current location: "/login".

b. 解决方法

src/router/index.js文件下,添加:

import Router from "vue-router";
Vue.use(Router);
const VueRouterPush = Router.prototype.push;
Router.prototype.push = function push(to) {
  return VueRouterPush.call(this, to).catch((err) => err);
};