【Vue】eslint报错“Component name “XXX“ should always be multi-word”的解决方法

第一种解决方法:修改组件名称为大驼峰,不要用系统中命令常见的名称。
第二种解决方法:
在根目录下,打开【.eslintrc.js】文件,如果没有,就新建,内容

module.exports = {
    root: true,
    env: {
      node: true
    },
    'extends': [
      'plugin:vue/essential',
      'eslint:recommended'
    ],
    parserOptions: {
      parser: '@babel/eslint-parser'
    },
    rules: {
      'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
      'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
       //在rules中添加自定义规则
       //关闭组件命名规则
       "vue/multi-word-component-names":"off",
    },
    overrides: [
      {
        files: [
          '**/__tests__/*.{j,t}s?(x)',
          '**/tests/unit/**/*.spec.{j,t}s?(x)'
        ],
        env: {
          jest: true
        }
      }
    ]
  }
posted @ 2023-01-11 15:17  seekHelp  阅读(1275)  评论(0编辑  收藏  举报