95 lines
3.4 KiB
Markdown
95 lines
3.4 KiB
Markdown
# vue3-uniapp-template
|
||
|
||
## 特性
|
||
|
||
- ⚡️ [Vue 3](https://github.com/vuejs/core), [Vite](https://github.com/vitejs/vite), [pnpm](https://pnpm.io/), [esbuild](https://github.com/evanw/esbuild) - 就是快!
|
||
|
||
- 📦 [组件自动化加载](./src/components)
|
||
|
||
- 📑 pinia+适用于多端的持久化方案
|
||
|
||
- 🎨 [UnoCSS](https://unocss.dev/) - 高性能且极具灵活性的即时原子化 CSS 引擎
|
||
|
||
- 😃 [UnoCSS Icons](https://unocss.dev/presets/icons), [海量图标-https://icones.js.org/](https://icones.js.org/)
|
||
|
||
- 🔥 使用 [新的 `<script setup>` 语法](https://github.com/vuejs/rfcs/pull/227)
|
||
|
||
- 📥 [API 自动加载](https://github.com/antfu/unplugin-auto-import) - 直接使用 Composition API 无需引入
|
||
|
||
- 🦾 [TypeScript](https://www.typescriptlang.org/) & [ESLint](https://eslint.org/) & [stylelint](https://stylelint.io/) - 保证代码质量
|
||
|
||
- 🗂 [husky](https://typicode.github.io/husky/) & [lint-staged](https://github.com/lint-staged/lint-staged) + [commitlint](https://commitlint.js.org/) - 保证代码提交质量
|
||
|
||
- 🗂 ES6 import 顺序自动排序,css 属性自动排序,增强编码一致性
|
||
|
||
- 🗂 使用请求拦截器,封装好您的请求
|
||
|
||
- 🗂 图片自动压缩,再也不用去tinyPng等网站压缩图片了
|
||
|
||
- 🗂 多环境配置分开,想则怎么配置就怎么配置
|
||
|
||
## 业务功能 TODO LIST
|
||
|
||
- [x] 页面下拉刷新(全局+局部)
|
||
- [x] 页面上拉加载
|
||
- [x] 导航栏返回or去首页
|
||
- [x] 导航栏渐变(微信+h5)
|
||
- [x] 自定义导航栏顶部机型适配
|
||
- [x] 微信小程序分享(好友+朋友圈)
|
||
- [ ] 微信登录
|
||
- [ ] 微信一键登录(基于手机号)
|
||
- [ ] 仿BOSS直聘-个人中心
|
||
- [ ] 仿华为商城-个人中心
|
||
- [ ] 页面悬浮球(floating bubble)
|
||
- [ ] 多tab列表功能
|
||
- [ ] 瀑布流
|
||
- [ ] 头像上传
|
||
- [ ] 图片剪辑
|
||
- [x] 抽奖-九宫格抽奖
|
||
- [ ] 抽奖-大转盘抽奖
|
||
- [ ] 仿网易云音乐APP(独立项目)
|
||
|
||
## 环境
|
||
|
||
- pnpm>=8.12
|
||
- node>=18
|
||
|
||
## 拉取代码
|
||
|
||
- git 拉取
|
||
|
||
- github:`git clone https://github.com/fly-vue3-templates/vue3-uniapp-template fly-uniapp`
|
||
|
||
- gitee:`git clone https://gitee.com/fly-vue3-templates/vue3-uniapp-template.git fly-uniapp`
|
||
|
||
- degit 拉取(不包含git,需要自己git init)
|
||
|
||
- `npx degit https://github.com/fly-vue3-templates/vue3-uniapp-template fly-uniapp`
|
||
|
||
- `npx degit https://gitee.com/fly-vue3-templates/vue3-uniapp-template fly-uniapp`
|
||
|
||
- github template
|
||

|
||
|
||
## 运行
|
||
|
||
- web平台: `pnpm dev:h5`, 然后打开 [http://localhost:9000/](http://localhost:9000/)。
|
||
- weixin平台:`pnpm dev:mp-weixin` 然后打开微信开发者工具,导入本地文件夹,选择本项目的`dist/dev/mp-weixin` 文件。
|
||
|
||
## 发布
|
||
|
||
- web平台: `pnpm build:h5`,打包后的文件在 `dist/build/h5`,可以放到web服务器,如nginx运行。如果最终不是放在根目录,可以在 `vite.config.ts` 的 `base` 属性进行配置。[vite官网](https://cn.vitejs.dev/config/shared-options.html#base)
|
||

|
||
- weixin平台:`pnpm build:h5`, 打包后的文件在 `dist/build/mp-weixin`,然后通过微信开发者工具导入,并点击右上角的“上传”按钮进行上传。
|
||
|
||
## 最佳推荐
|
||
|
||
- 无登录+无tabbar
|
||
- 无登录+有tabbar
|
||
- 有登录+无tabbar
|
||
- 有登录+有tabbar
|
||
|
||
## 注意事项
|
||
|
||
暂不支持APP,尝试过程见 `README.issue.md` 文件。
|