export 'default' (imported as 'mod') was not found in '-!../../../../node_m
2021/11/19 11:10:11
本文主要是介绍export 'default' (imported as 'mod') was not found in '-!../../../../node_m,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
报错“
export 'default' (imported as 'mod') was not found in '-!../../../../node_module
s/cache-loader/dist/cjs.js!../../../../node_modules/thread-loader/dist/cjs.js??c
lonedRuleSet-2[0].rules[0].use[1]!../../../../node_modules/babel-loader/lib/inde
x.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-2[0].rules[0].us
e[3]!../../../../node_modules/thread-loader/dist/cjs.js??ruleSet[0].rules[0].use
[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index
.vue?vue&type=script&lang=ts&' (possible exports: __esModule)
”
报以上错误的问题原因:
我的源代码如下:
index.vue
<template> <div class="hello-edsp-hello-module"> <el-table :data="getList" style="width: 100%"> <el-table-column prop="date" label="日期" width="180"></el-table-column> <el-table-column prop="name" label="姓名" width="180"></el-table-column> <el-table-column prop="address" label="地址"></el-table-column> </el-table> </div> </template> <script lang="ts"> import { Component, Vue } from 'vue-property-decorator'; interface List { date: string; name: string; address: string; } @Component export default class TestModule extends Vue { getList:List[] = [{ date: '1111', name: 'nnnnn', address: '地址' }]; showHelloEditDialog: boolean = false; } </script>
原因其实是我默认导出的TestModule和其他组件默认导出的名字重名了,所以报错,将这个名字修改一下,系统可以正常运行。
这篇关于export 'default' (imported as 'mod') was not found in '-!../../../../node_m的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01后台管理开发学习:新手入门指南
- 2024-11-01后台管理系统开发学习:新手入门教程
- 2024-11-01后台开发学习:从入门到实践的简单教程
- 2024-11-01后台综合解决方案学习:从入门到初级实战教程
- 2024-11-01接口模块封装学习入门教程
- 2024-11-01请求动作封装学习:新手入门教程
- 2024-11-01登录鉴权入门:新手必读指南
- 2024-11-01动态面包屑入门:轻松掌握导航设计技巧
- 2024-11-01动态权限入门:新手必读指南
- 2024-11-01动态主题处理入门:新手必读指南