Blame view
README.md
1.06 KB
a81a33d26 s |
1 |
# gulu-vue |
0db291810 “-mcomfirmOder页面 |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
## 注意 请先阅读 [uni-app快速上手](https://uniapp.dcloud.io/quickstart) ## 业务组件 - 业务组件和页面放到一起(如:pages/index/components) - 组件名大写 ## 通用组件 - 通用组件统一放入 src/components 目录下 - 组件目录名请大写 ## 样式 - sass - 尽量避免多层级嵌套 [详情-自定义组件样式](https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html) - 尽量避免标签选择器 [详情-自定义组件样式](https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html) ## 注释 必要的时候请添加合适的注释(但不要滥用注释) ## git commit 建议参考 [Commit message 和 Change log 编写指南](http://www.ruanyifeng.com/blog/2016/01/commit_message_change_log.html) |
a81a33d26 s |
29 30 31 |
## Project setup ``` |
0db291810 “-mcomfirmOder页面 |
32 |
npm install |
a81a33d26 s |
33 |
``` |
0db291810 “-mcomfirmOder页面 |
34 |
### H5 |
a81a33d26 s |
35 |
``` |
0db291810 “-mcomfirmOder页面 |
36 |
npm run serve |
a81a33d26 s |
37 38 39 40 |
``` ### Compiles and minifies for production ``` |
0db291810 “-mcomfirmOder页面 |
41 42 43 44 45 46 |
npm run build ``` ### 微信小程序 ``` npm run dev:mp-weixin |
a81a33d26 s |
47 |
``` |
0db291810 “-mcomfirmOder页面 |
48 49 |
### 其他命令 - 参考package.json文件 |
a81a33d26 s |
50 |