# project-element-template **Repository Path**: grgFE/project-element-template ## Basic Information - **Project Name**: project-element-template - **Description**: 基于vue-element-template开发的vue3.0+typescript版本 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-03-25 - **Last Updated**: 2021-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # project-element-template 基于vue-element-template开发的vue3.0+typescript版本 ## Project setup ``` yarn install ``` ### Compiles and hot-reloads for development ``` yarn serve ``` ### Compiles and minifies for production ``` yarn build ``` ### Run your unit tests ``` yarn test:unit ``` ### Lints and fixes files ``` yarn lint ``` ## commitlint ``` # -m 后必须双引号, type类型后必须引号以及空格 # 示例如下: git commit -m "feat: 精简commitlint" ``` `type` 可选类型 |类型 | 描述| |-----|-----| |feat | 新特性| |fix | 修改问题| |style | 代码格式修改| |docs | 文档修改| |perf | 优化相关,比如提升性能、体验| |refactor | 代码重构| |build | 发布版本| |chore | 改变构建流程、或者增加依赖库、工具等| |ci | 持续集成修改| |revert | 回滚到上一个版本| |test | 测试用例修改|