前端_VS Code_解决Vue取消eslint语法限制

出现问题:
编译运行一直失败,提示65个errors,并提示如下:
“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. ”

问题原因:Vue对语法的严格限制

解决方法:在build/webpack.base.conf.js文件中,注释或者删除掉:module->rules中有关eslint的规则
前端_VS Code_解决Vue取消eslint语法限制_第1张图片
重新运行npm run dev即可

你可能感兴趣的:(前端_VS Code_解决Vue取消eslint语法限制)