vuejs·创建项目后删除页面报错 Component name “xxx“ should always be multi-word
Component name “xxx“ should always be multi-word vue/multi-word-component-names 解决方法 附带脚手架生成文件结构目录解答
vue3 脚手架生成后报错 should always be multi-word vue/multi-word-component-names
should always be multi-word
vue/multi-word-component-names 附带脚手架生成文件结构目录造成
解决方法:
项目下vue.config.js文件
lintOnSave: false //关闭语法检查
module.exports = defineConfig({ transpileDependencies: true, lintOnSave: false //关闭语法检查 //vue.config.js })
654 Views