前端vue开发项目遇到“Use // eslint-disable-next-line to ignore the next line”

问题:前端使用vue来开发,原本项目是可以正常运行的,由于需要卸载element-ui,重新安装更新版本的element-ui,操作完成执行npm run serve 后报错,显示

Syntax Error: TypeError: Cannot read property 'styles' of undefined


You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.

由于第一次遇到这个问题,上百度查教法如下:

https://blog.csdn.net/tuzi007a/article/details/105906812

https://blog.csdn.net/qq_41999034/article/details/109078474

,结果第一个链接不是描述该问题,第二个链接再我的项目里根本找不到。后来尝试下面这种方法也不行:

前端vue开发项目遇到“Use // eslint-disable-next-line to ignore the next line”_第1张图片

其中安装依赖我使用的是npm install --force。

最后经过同事帮忙,执行下面步骤后成功运行了

1、npm i --legacy-peer-deps

2、npm i element-ui -S --legacy-peer-deps

你可能感兴趣的:(日常开发中问题分享,前端,vue.js,javascript)