报错内容
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.
ERROR in [eslint]
/Users/soul/projects/learning-vuejs3/chapter07/01_learn_component/src/01_seperate/Footer.vue
1:1 error Component name "Footer" should always be multi-word vue/multi-word-component-names
/Users/soul/projects/learning-vuejs3/chapter07/01_learn_component/src/01_seperate/Header.vue
1:1 error Component name "Header" should always be multi-word vue/multi-word-component-names
/Users/soul/projects/learning-vuejs3/chapter07/01_learn_component/src/01_seperate/Main.vue
1:1 error Component name "Main" should always be multi-word vue/multi-word-component-names
✖ 3 problems (3 errors, 0 warnings)
解决办法
修改配置文件 .eslintrc.js ,在rules中加入这一段。
// 关闭名称校验
'vue/multi-word-component-names': "off"
修改之后需要重新启动npm run serve
文章讲述了在使用Vue.js开发时遇到的ESLint错误,涉及组件名命名不符合规范,需要在.eslintrc.js配置文件中禁用相关规则。解决办法是关闭‘vue/multi-word-component-names’检查并重启服务。
617

被折叠的 条评论
为什么被折叠?



