- 简洁开封即用
- 内置常用工具,
VueUse
,I18n
,Pinia
- 合理的规范配置
ESlint
,Prettier
,CommitLint
- 获取项目代码(https or ssh)
git clone https://github.com/jsxiaosi/nuxt3-template.git
git clone git@github.com:jsxiaosi/nuxt3-template.git
或者通过xs-cli
快速创建
npx @jsxiaosi/xs-cli create [project-name]
- 安装依赖
cd vite-vue3-Template
npm install
# 建议不要直接使用 cnpm 安装以来,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
# 如果下载依赖慢可以使用淘宝镜像源安装依赖
npm install --registry=https://registry.npm.taobao.org
- 运行
npm run dev
- 打包
npm run build
Pull Request:
- Fork 代码!
- 创建自己的分支:
git checkout -b feature/xxxx
- 提交你的修改:
git commit -m 'feature: add xxxxx'
- 推送您的分支:
git push origin feature/xxxx
- 提交
pull request
-
参考 vue 规范
feat
新增功能fix
修复缺陷docs
文档变更style
代码格式refactor
代码重构perf
性能优化test
添加疏漏测试或已有测试改动build
构建流程、外部依赖变更 (如升级 npm 包、修改打包配置等)ci
修改 CI 配置、脚本revert
回滚 commitchore
对构建过程或辅助工具和库的更改 (不影响源文件)wip
正在开发中types
类型定义文件修改