错误描述
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.
原因分析
vue所创建的项目会默认使用eslint进行错误检测,关掉即可。
解决办法
检查项目中是否有vue.config.js
文件。
如果项目中不存在,则在根目录下创建vue.config.js
文件,写入的内容为:文章来源:https://www.toymoban.com/news/detail-671004.html
module.exports={
lintOnSave:false,
}
如果存在此文件,则打开该文件,查找lintOnSave
设置的状态,如果是true,则改为false即可。
最后保存文件,npm run serve
,可以看到报错已经被解决了。
文章来源地址https://www.toymoban.com/news/detail-671004.html
到了这里,关于vue-“eslint-disable-next-line to ignore the next line“报错解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!