报错 [babel-plugin-component] If you are using bothon-demand and importing all, make sure to invoke the importing all first.
时间: 2024-05-12 14:20:53 浏览: 284
babel-plugin-on-demand-import:Babel插件,用于按需导入组件
这个错误是由babel-plugin-component插件引起的,它建议在使用on-demand和import all时,请确保先调用import all。
解决方法:
在你的代码中,将import all的语句放在on-demand的语句之前。例如:
```javascript
import Vue from 'vue'
import { Button } from 'element-ui'
Vue.use(Button)
```
如果你已经按照上述方法排列了import语句,但仍然遇到此错误,请确保你已经正确安装了babel-plugin-component插件,并在babel配置文件中正确配置了该插件。
阅读全文