您现在的位置: 首页>> 资讯 >> 正文

vue3报错 ERROR Failed to compile with 1 errorYou may use special comments to disab

来源: 腾讯云


(资料图片)

问题描述

ERROR  Failed to compile with 1 error                                                                                                                                                                  16:17:24[eslint]C:\Users\xuhuichen\Desktop\gpyh-ec-wx-front\src\components\a1.vue  1:1  error  Component name "a1" should always be multi-word  vue/multi-word-component-names✖ 1 problem (1 error, 0 warnings)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]C:\Users\xuhuichen\Desktop\gpyh-ec-wx-front\src\components\a1.vue  1:1  error  Component name "a1" should always be multi-word  vue/multi-word-component-names✖ 1 problem (1 error, 0 warnings)

解决方法

思路

这么多错 全都是因为eslint严格格式

关闭eslint严格格式就好

方法

直接在根目录下创建vue.config.js文件,关键代码lintOnSave: false,

const { defineConfig } = require("@vue/cli-service")module.exports = defineConfig({  lintOnSave: false,})
相关新闻
杀马特是什么意思_mate是什么意思

今天小编肥嘟来为大家解答以上的问题。杀马特是什么意思,mate是什么意思相信很多小伙伴还不知道,现在让我们一起来看看吧!1、soulmate:精神伙

java字节流和字符流|每日精选

Java中的I O操作可以分为两种类型:字节流和字符流。字节流用于处理二进制数据,而字符流用于处理文本数据。本文将详细介绍Java中的字节流和字