in ./node_modules/element-ui/lib/theme-chalk/index.css Syntax Error: TypeError: node.getIterator is not a function ERROR in ./node_modules/element-ui/lib/theme-chalk/index.css (./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/element-ui/lib/theme-chalk/index.css) Module build failed (from ./node_modules/css-loader/dist/cjs.js): TypeError: node.getIterator is not a function at LazyResult.visitTick (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:530:33) at LazyResult.runAsync (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:410:30) at LazyResult.async (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:221:30) at LazyResult.then (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:206:17) @ ./node_modules/element-ui/lib/theme-chalk/index.css 4:14-156 15:3-20:5 16:22-164 @ ./src/main.js 12:0-46 webpack compiled with 1 error
时间: 2024-01-21 07:17:34 浏览: 205
element-ui@2.15.7.zip
5星 · 资源好评率100%
这个错误是由于在编译Element UI的CSS文件时发生的。可能是因为你的PostCSS版本过低,需要更新到最新的版本。你可以尝试执行以下命令来更新PostCSS:
```
npm install postcss-loader postcss-import postcss-url --save-dev
```
如果还有问题,请尝试更新CSS Loader:
```
npm install css-loader --save-dev
```
如果仍然出现问题,请尝试清除npm缓存并重新安装Element UI:
```
npm cache clean --force
npm install element-ui --save
```
阅读全文