Files
huangjingfen/mp/README.md
2026-03-06 03:24:54 +08:00

32 lines
733 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 小程序前端
黄精粉微信小程序前端代码
## 技术栈
- UniApp 3
- Vue 3
- Pinia 状态管理
- uni-ui 组件库
## 目录结构
```
mp/
├── src/
│ ├── pages/ # 页面
│ ├── components/ # 组件
│ ├── static/ # 静态资源
│ ├── utils/ # 工具函数
│ ├── api/ # API 接口
│ └── store/ # Pinia store
├── manifest.json # 应用配置
├── pages.json # 页面配置
└── package.json
```
## 开发规范
- 页面命名kebab-case`my-order.vue`
- 组件命名PascalCase`ProductCard.vue`
- API 封装:`src/api/` 目录,按模块分文件