Module not found: Error: Can't resolve '@element-plus/icons-vue/dist/types' in 'F:\桌面\web\vue-project\src\views'
时间: 2023-07-21 11:03:51 浏览: 677
详解vue-cli下ESlint 配置说明
这个错误通常是因为你的项目中缺少了相应的依赖包,可以尝试以下几个步骤:
1. 确认你的项目中是否已经安装了 `@element-plus/icons-vue` 包,如果没有,请使用以下命令安装:
```
npm install @element-plus/icons-vue
```
2. 确认你的项目中是否已经安装了 `@vue/compiler-sfc` 包,如果没有,请使用以下命令安装:
```
npm install @vue/compiler-sfc
```
3. 如果以上两个步骤都已经尝试过了,可以尝试删除 `node_modules` 文件夹并重新安装依赖:
```
rm -rf node_modules
npm install
```
如果还是无法解决问题,可以尝试更新你的 Node.js 版本或者将 `@element-plus/icons-vue` 以及相关依赖包卸载并重新安装。
阅读全文