欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2 problems (2 errors, 0 warnings) 2 errors and 0 warnings potentially fixable with the `--fix` opt

程序员文章站 2022-05-05 10:27:01
...

创建vue项目初始化完成之后 在终端运行 npm run serve
出现一个错误,如下图:
2 problems (2 errors, 0 warnings) 2 errors and 0 warnings potentially fixable with the `--fix` opt

2 problems (2 errors, 0 warnings) 2 errors and 0 warnings potentially fixable with the `--fix` opt
解决的方法是

① 项目的代码中找到.eslintrc.js 文件夹将extends中的’@vue/standard’注释掉

 extends: [
    'plugin:vue/essential',
    // '@vue/standard'
  ],

②在rules中添加’space-before-function-paren’: 0

rules: {
    'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
    'space-before-function-paren': 0 
  }

保存停止任务 再次运行就可启动APP

相关标签: vue.js