error Component name “xxx“ should always be multi-word vue/multi-word-comp
一、Vue 3编译报错error Component name "Login" should always be multi-word vue/multi-word-comperror Component name "Login" should always be multi-word vue/multi-word-comp分析:语法检查的时候把不规范的代码(即命名不规范)当成了错误解决方案:更改
·
一、Vue 3编译报错
error Component name "Login" should always be multi-word vue/multi-word-comp
error Component name "Login" should always be multi-word vue/multi-word-comp
分析:语法检查的时候把不规范的代码(即命名不规范)当成了错误
解决方案:
- 更改组件名(这个比较麻烦),也就是重新起个组件名,使其符合命名规范,如: StudentName 或者 student-name
- 修改配置项,关闭语法检查
1.在项目的根目录找到(没有就创建)vue.config.js
文件
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:false
})
更多:
Element-ui和Element-Plus的区别_Element2和Element3的区别
Vue3+Element Plus开发搭建_Vue3+Element3开发搭建
更多推荐
已为社区贡献11条内容
所有评论(0)