Vue 报错:"export 'default' (imported as '组件') was not found in '组件'

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 报错:"export 'default' (imported as '组件') was not found in '组件'相关的知识,希望对你有一定的参考价值。

参考技术A 我本地的是 @vue/cli 4.5.4

在配置使用echarts时,直接引入报错,提示没有设置默认引入。

可正常使用。

关于vue,webpack 中 “exports is not defined”报错

vue项目npm run dev 后项目报错 : 提示 “exports is not defined”。

 

导致这个问题是因为balbel的配置文件.babelrc的问题:

{
  "presets": [
    ["env", { "modules": false }],
    "stage-2"
  ],
  "plugins": ["transform-runtime"],
  "comments": false,
  "env": {
    "test": {
      "presets": ["env", "stage-2"],
      "plugins": [ "istanbul" ]
    }
  }
}

  去掉 { "modules": false }其中{ "modules": false }阻止了babel进行模块转换,具体见modules配置的说明,所以,将modules改为默认设置即可,或者删除该配置。

以上是关于Vue 报错:"export 'default' (imported as '组件') was not found in '组件'的主要内容,如果未能解决你的问题,请参考以下文章

Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<

Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<

vue3.0引入ant-design-vue报错 export ‘default‘ (imported as ‘Vue‘) was not found in ‘vue‘

Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段

使用vue时,报错“exports is not defined”

踩坑记录-nuxt引入vuex报错store/index.js should export a method that returns a Vuex instance.