在启动vue项目时 出现错误:
1:1 error Component name “Header” should always be multi-word vue/multi-word
原因是:语法检查的时候把不规范的代码(即命名不规范)当成了错误
解决方法:
在 vue.config.js文件中添加配置:lintOnSave: false, 如下:
vue.config.js
const { defineConfig } = require(‘@vue/cli-service’)
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false
})
————————————————