本文介绍: 报错内容。 Component name “Main” should always be multi-word
报错内容
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
原文地址:https://blog.csdn.net/default7/article/details/135914769
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_64765.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。