# Vue 基础代码 `[Vue.Base]` > - includes `*.vue` ## Vue 自定义组件命名规则 `[Vue.Base.CustomComponentName]` 必须使用大驼峰命名并且使用的时候也是,并且至少两个单词。 ### Example: 自定义组件命名 #### Good: 使用大驼峰且至少两个单词 ```vue ``` #### Bad: 使用全小写或单词不足 ```vue ```