zl程序教程

您现在的位置是:首页 >  前端

当前栏目

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

Vue Error be word name index Component multi
2023-09-27 14:27:34 时间

Vue3在编译的时候报错error Component name "index" should always be multi-word vue/multi-word-component-names,解决方法是关闭语法检查,在vue.config.js中增加下面配置

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