vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names

这篇具有很好参考价值的文章主要介绍了vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

前言

今天使用vscode开发vue引入组件的时候遇到一个错误,我的组件名称以及路径都是没问题的,但是就是运行不起来

错误信息截图如下
vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names

vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names

分析问题

根据提示信息可知是组件名出了问题,概就是组件名应该使多个单词拼接横线组成的。

但是我又查阅了官方的风格指南,发现组件名可以这样命名,一个单词单身首字母大写也是没问题的

查阅资料发现,这其实是语法检查的时候把不规范的代码(即命名不规范)当成了错误。

解决问题

针对这种问题,我个人推荐:修改配置项,关闭语法检查

1 打开并且编译vue.config.js

项目的根目录找到vue.config.js文件
vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names

2 添加配置

添加配置: lintOnSave:false,,作用是关闭语法检查
vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names

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

3 保存重启

保存文件,重新执行npm run serve即可

vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names
解决
vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names文章来源地址https://www.toymoban.com/news/detail-510849.html

到了这里,关于vue组件终端报错: error Component name “xxx“ should always be multi-word vue/multi-word-component-names的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包