踩坑:nodejs+vue前端报错 These dependencies were not found:

nodejs+vue前端报错 These dependencies were not found:

写在前面:nodejs为后台,前端vue

先看下报错

These dependencies were not found:

* axios in ./src/main.js
* vuex in ./src/store/index.js

To install them, you can run: npm install --save axios vuex

按照提示信息

npm install --save axios vuex

但是还是同样的报错

最终解决办法:

删除前端项目中的node_modules文件夹
再重新 npm install 安装所有的依赖
执行 npm run serve
启动成功

记录完毕!!

–the end–

你可能感兴趣的:(vue)