当前位置: 代码迷 >> 综合 >> error Component name “About“ should always be multi-word vue/multi-word-component-names
  详细解决方案

error Component name “About“ should always be multi-word vue/multi-word-component-names

热度:1   发布时间:2023-12-02 17:35:00.0

报错:
在这里插入图片描述
解决方案一:

  1. 可以重新命名,采用驼峰命名法 或 - 衔接的方式

解决方案二:
在项目的根目录找到(没有就创建) vue.config.js 这个文件
在这里插入图片描述
加入这几行代码
在这里插入图片描述

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

保存重新编译

  相关解决方案