originalPush.call(...).cath is not a function TypeError: originalPush.call(...).cath is not a function at VueRouter.push (webpack-internal:///./src/router/index.js:41:44) at eval (webpack-internal:///./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/UserListVue.vue?vue&type=script&lang=js&:24:23)
时间: 2023-07-31 17:13:22 浏览: 339
cath.exe:cath.exe 模板
这个错误通常是因为代码中出现了一个错误的写法:将 `catch` 写成了 `cath`。
请检查代码中是否有类似于以下的语句:
```
originalPush.call(...).cath(function(error) {
// 处理 error 的代码
});
```
将 `cath` 改为 `catch` 即可:
```
originalPush.call(...).catch(function(error) {
// 处理 error 的代码
});
```
阅读全文