(base) pangjiajia@buye-deMacBook-Pro 05_learnvuex % npm insta
ll vuex --save
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: 05_learnvuex@1.0.0
npm ERR! Found: vue@2.6.14
npm ERR! node_modules/vue
npm ERR! vue@"^2.5.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer vue@"^3.0.2" from vuex@4.0.2
npm ERR! node_modules/vuex
npm ERR! vuex@"*" 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! See /Users/pangjiajia/.npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/pangjiajia/.npm/_logs/2022-04-10T08_25_26_380Z-debug-0.log
报错原因:npm版本过高
解决办法:使用命令查看可以安装的vuex版本 制定安装版本
npm view vuex versions --json
我安装的是vuex@3.6.2
npm install vuex@3.6.2 --save