-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
Closed
Description
Feature request(新功能建议)
This is just a suggestion to standardize filename convention for *.vue and *.js
CamelCasefor Vue file inside/componentsexceptindex.vue(since this is default). Ex:
- src/components/Charts/Keyboard.vue
- src/views/charts/Keyboard.vue
- src/views/charts/Line/index.vue
kebab-casefor js files. Ex:
- src/components/MarkdownEditor/default-options.js
- src/views/svg-icons/require-icons.js
- Folders:
CamelCasefor global components andkebab-casefor others. Ex:
- src/components/ComponentName/index.vue
- src/views/components-demo/
- src/views/error-page/
- src/directive/el-drag-dialog
PanJiaChen