一、问题描述
执行npm install
命令来运行vue项目后,出现下面的错误提示
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @vue/eslint-config-standard@6.1.0
npm ERR! Found: eslint-plugin-vue@8.7.1
npm ERR! node_modules/eslint-plugin-vue
npm ERR! dev eslint-plugin-vue@"^8.0.3" from the root project
npm ERR! Could not resolve dependency:
npm ERR! peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
npm ERR! node_modules/@vue/eslint-config-standard
npm ERR! dev @vue/eslint-config-standard@"^6.1.0" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: eslint-plugin-vue@7.20.0
npm ERR! node_modules/eslint-plugin-vue
npm ERR! peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
npm ERR! node_modules/@vue/eslint-config-standard
npm ERR! dev @vue/eslint-config-standard@"^6.1.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR!
npm ERR! For a full report see:
npm ERR! E:\software\nodeJS\node_cache\_logs\2023-04-12T13_33_01_666Z-eresolve-report.txt
npm ERR! A complete log of this run can be found in:
npm ERR! E:\software\nodeJS\node_cache\_logs\2023-04-12T13_33_01_666Z-debug-0.log
二、解决方法
上述错误是因为出现版本冲突问题,执行命令:npm i --legacy-peer-deps
,可忽略vue项目中引入相同名称但不同版本的modules问题并继续安装。
三、参考
https://blog.youkuaiyun.com/devcloud/article/details/124469666
https://blog.youkuaiyun.com/jolinoy/article/details/123951491