vue3 scrpt setup ESLint: Component name "index" should always be multi-word. (vue/multi-word-component-names)
时间: 2023-03-27 22:00:50 浏览: 149
怎样在vue项目下添加ESLint的方法
抱歉,我可以回答这个问题。在使用 vue3 script setup 时,可以通过配置 ESLint 来规范组件名称的命名。可以在 .eslintrc.js 文件中添加如下配置:
module.exports = {
// ...
rules: {
'vue/component-name-in-template-casing': ['error', 'PascalCase'],
},
};
其中,'PascalCase' 表示组件名称使用大驼峰命名法。
阅读全文