vue配置文件中的漏洞:error Component name “Login“ should always be multi-word vue/multi-word-component-name
vue配置文件中的漏洞:error Component name "Login" should always be multi-word vue/multi-word-component-names
·
报错:
E:\Python_Learning\vscode\Vue\vue_shop_test\src\components\Login.vue
1:1 error Component name "Login" should always be multi-word vue/multi-word-component-names
分析:语法检查的时候把不规范的代码(即命名不规范)当成了错误
解决方案:
更改组件名(这个比较麻烦),也就是重新起个组件名,使其符合命名规范,如: StudentName 或者 student-name
修改配置项,关闭语法检查
1.在项目的根目录找到(没有就创建)vue.config.js文件
文件内容:
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:false
})
const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, lintOnSave:false }) |
更多推荐
已为社区贡献2条内容
所有评论(0)