跑Vue项目遇到的报错及解决方法: 报错一: npm ERR! cb() never called! npm ERR! This is an error with npm itself. Pleas 解决一: (1)删除项目里的 packeage-lock.json 和 node_modules 文件: (2)清理npm缓存: npm cache clean --force (3)再安装 node_modules : npm install (4)最后项目启动: npm run dev /npm run build