Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 993 Bytes

readme.md

File metadata and controls

45 lines (29 loc) · 993 Bytes

uni-app vue3 模板

安装

可以使用npm \ cnpm \ yarn \ pnpm 等安装工具。

建议使用pnpm

pnpm i

启动

uni-app提供了多种环境的启动方式,可以根据package.jsonscript字段,来选择执行

比如编译微信小程序的方式

pnpm run dev:mp-weixin

已经集成的功能

  • eslint代码验证,以及保存自动修复
  • git-commit 代码提交前验证代码格式

相关文档地址

关于git commit 的格式

git commit的message 做了格式验证,请参照以下的格式进行提交

git commit -m 'feat: 我增加了一个功能'
git commit -m 'fix: 修复了某个bug'
git commit -m 'docs: 文档变更'
git commit -m 'style: 样式变更'