VUE3报错Component name “Header” should always be multi-word vue/multi-word-component-names

是因为开启了语法检查,写成驼峰就可以,如果不写成驼峰,则要在vue.config.js中加入下列语句:

lintOnSave:false//关闭语法检查

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  transpileDependencies: true,
  lintOnSave:false//关闭语法检查
})

爆红解决方法
.eslintrc.js 的 parserOptions加上下列语句

“requireConfigFile” : false

 parserOptions: {
        parser: '@babel/eslint-parser',
        "requireConfigFile": false
    },
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐