'Log files: C:\Users\51288\AppData\Local\npm-cache\_logs\2023-05-23T15_29_28_438Z-debug-0.log # npm resolution error report While resolving: @vue/eslint-config-standard@6.1.0 Found: eslint-plugin-vue@8.7.1 node_modules/eslint-plugin-vue dev eslint-plugin-vue@"^8.7.1" from the root project peer eslint-plugin-vue@"^8.0.1" from @vue/eslint-config-typescript@9.1.0 node_modules/@vue/eslint-config-typescript dev @vue/eslint-config-typescript@"^9.1.0" from the root project Could not resolve dependency: peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0 node_modules/@vue/eslint-config-standard dev @vue/eslint-config-standard@"^6.1.0" from the root project Conflicting peer dependency: eslint-plugin-vue@7.20.0 node_modules/eslint-plugin-vue peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0 node_modules/@vue/eslint-config-standard dev @vue/eslint-config-standard@"^6.1.0" from the root project Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
时间: 2023-06-21 11:08:24 浏览: 214
npm修改全局安装默认路径(C:\Users\Administrator\AppData\Roaming\npm\node_modules)
5星 · 资源好评率100%
这个报错是由于你的项目中有两个不兼容的版本的 eslint-plugin-vue 导致的。一个是 8.7.1,另一个是 7.20.0。你需要解决这个冲突,要么升级或降级其中一个依赖项,要么使用 `--force` 或 `--legacy-peer-deps` 命令来强制安装不兼容的依赖项。但是要注意,使用这些选项可能导致项目出现问题,所以最好还是解决依赖项冲突。
阅读全文