Vue (第9篇 项目启动出现Error:Cannot find module 'array-includes'解决方法)

1、用WebStorm 启动项目时遇到这样的报错:

Vue (第9篇 项目启动出现Error:Cannot find module 'array-includes'解决方法)_第1张图片

2、解决方法:

①首先删掉项目中的node_modules文件夹。

②执行 npm cache clean 或者  cnpm cache clean 命令清除缓存。

此时依然报错:由于 npm 5 使用了新的包管理模式,所以在升级之后,请先清空一下本地缓存:

所以执行:npm cache clean --force  (在WebStorm执行时提示我们在管理员状态下执行,所以以管理员身份启动cmd,执行命令)

Vue (第9篇 项目启动出现Error:Cannot find module 'array-includes'解决方法)_第2张图片

③然后执行cnpm install  

3、问题已经解决,我们执行 npm run dev 

Vue (第9篇 项目启动出现Error:Cannot find module 'array-includes'解决方法)_第3张图片

此时项目已经成功运行起来。

你可能感兴趣的:(Vue)