Cannot read property ‘version‘ of undefined TypeError Cannot read property ‘version‘ of undefined

在VUE项目中遇到以下报错:Cannot read property ‘version’ of undefined
TypeError: Cannot read property ‘version’ of undefined at module.exports (/redball_download/node_modules/@vue/cli-plugin-eslint/index.js:20:27)

如图:

Cannot read property ‘version‘ of undefined TypeError Cannot read property ‘version‘ of undefined_第1张图片
这个错误是代码检测工具eslint的报错 上面错误大致原因为我删除了在package.json中eslint的配置,导致有一句eslint的依赖包
找不到对应的eslint相关配置代码如下:
“@vue/cli-plugin-eslint”: “~4.5.0”,
从而导致了上述报错,经过我百度之后发现好几篇文章解决方案为删除当前项目的node_modules,然后重新npm install下载依赖包
经过我本人尝试之后发现并没有用
那么索性关闭这烦人的eslint 这真是逼死强迫症的一个代码检测工具,个人觉得还不如ctrl+alt+L可以规范代码格式更加好用,那么先说一下上述问题的解决方式
解决方式:首先控制台卸载eslint: npm uninstall eslint --save 卸载之后再去package.json文件里删除"@vue/cli-plugin-eslint": “~4.5.0”,这句代码就OK了

那么以后记得创建项目避开ESlint
Cannot read property ‘version‘ of undefined TypeError Cannot read property ‘version‘ of undefined_第2张图片

你可能感兴趣的:(vue.js,npm,javascript)