Vue项目错误笔记
一,路由错误import VueRouter from 'vue-router'
const VueRouterPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(to) {
return VueRouterPush.call(this, to).catch(err => err)
}二,不停发送请求1. 找到/node_modules/sockjs-client/dist/sockjs.js
2.找到代码的 1605行
try {
...