Skip to content
On this page

文件/文件夹命名规范

文件

所有的vue文件都遵循大驼峰写法

// bad
errorPage.vue
error-page.vue

// good
ErrorPage.vue

js、ts文件遵循小驼峰或者大驼峰写法

// bad
net-creator.ts

// good
netCreator.ts
NetCreator.ts

less、css等样式文件遵循小驼峰写法

// bad
dark-theme.less

// good
darkTheme.less

文件夹

文件夹统一采用kebab-case的命名写法

// bad
bizComponents
BizComponents

// good
biz-components