vue项目执行npm install初始化后报错
run `npm audit fix` to fix them, or `npm audit` for details
出现这类提醒,按照如下操作进行
1、首先安装模块依赖:
npm install
(npm audit fix 含义: 检测项目依赖中的漏洞并自动安装需要更新的有漏洞的依赖,而不必再自己进行跟踪和修复。)
2、如果还是出现以上错误,继续输入:
npm audit fix –force
3、如果出现以上提示,继续输入
npm audit
4:至此项目配置完毕,运行工程
#启动
npm run dev
感谢!!!