报错-Component name “index“ should always be multi-word(组件命名不规范)

配置了eslint代码格式化,index.vue组件命名报错。

报错:Component name "index" should always be multi-word

翻译:组件名称“索引”应始终为多字

 解决方案:

报错-Component name “index“ should always be multi-word(组件命名不规范)_第1张图片

// 解决:index.vue组件命名问题(组件名称不合规范)
  rules: {
    'vue/multi-word-component-names': 0,    //不强制要求组件命名
  }

你可能感兴趣的:(编程中的错误总结,编程报错,编程工具使用,前端,vscode)