import 引入对象出现undefined以下操作确定目录没有问题//api/user.js步骤1import Http from '@api/base/http';console.log(Http) //undefined步骤2import Http from '@api/a/http';console.log(Http) //正常步骤3//重新运行 npm startimport Http from '@api/a/http';console.log(Http) //undefined//出现undefined时浏览器输出的错误信息Uncaught TypeError: Super expression must either be null or a function, not undefined
at exports.default (inherits.js?3dfd:21)
at eval (user.js?9c35:6) //api/user.js
at eval (user.js?9c35:6)
at Object../src/api/user.js (app.js:2829)
at __webpack_require__ (app.js:708)
at fn (app.js:113)
at eval (user.js?7719:1)
at Object../src/stores/model/user.js (app.js:3173)
at __webpack_require__ (app.js:708)
at fn (app.js:113)由于sf无法上传视频,具体操作示例已上传百度云
1 回答
慕工程0101907
TA贡献1887条经验 获得超5个赞
造成这个报错是因为引入冲突导致的。
大概是因为在vuex中引入了api/user.js。去掉就不会了,但我还是不清楚为什么会造成引入冲突。排查并未发现有不合理的引入。
最终是通过去掉vuex中的api模块引入解决的
添加回答
举报
0/150
提交
取消