1)组件文件名使用短横线(-)连接,与组件名一直。App.vue文件除外。
示例:
反例
├── index.html
├── main.js
└── components
├── productheader
├── productcontent
└── productfloor
正例
├── index.html
├── main.js
└── components
├── product-header
├── product-content
└── product-floor
2)不同业务组件建议放置在不同的问题件夹中。
示例:
反例
├── index.html
├── main.js
└── components
├── product-header
├── product-content
├── product-floor
├── user-header
├── user-content
└── user-floor
正例
├── index.html
├── main.js
└── components
├── product
| ├── product-header
| ├── product-content
| └── product-floor
└── user
├── user-header
├── user-content
└── user-floor