场景
今天在使用vue-cli4的版本创建vue2.0项目时,发现执行了yarn serve报错。错误如下图
Cannot read property 'version' of undefined
解决
最终从网上搜索多篇解决方案后,采用了如下方案解决了问题。
第1步:卸载eslint
yarn remove eslint --save
第2步:在package.json里将下图代码删除
"@vue/cli-plugin-eslint": "~4.5.0"
ok
2023-12-27 13:02:27