mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
21 KiB
21 KiB
Changelog
All notable changes to this project will be documented in this file. See commit-and-tag-version for commit guidelines.
2.1.0 (2025-04-02)
✨ Features | 新功能
- add unocss configuration for styling (642ee9e)
🐛 Bug Fixes | Bug 修复
- build: 修复pnpm构建出错的问题 (a0b559f)
💄 Styles | 风格
2.0.1 (2024-08-30)
✨ Features | 新功能
- Added utility function - judgePlatform (e28a64a)
- duotone图标样式配置 (998c87f)
- FontAwesomeIcon (89a695f)
- FontAwesomeIcon click emit (f8866ec)
- FontAwesomeIcon counter (6de5d36)
- FontAwesomeIcon demo example (460387c)
- FontAwesomeIcon stack example (e587fb5)
- FontAwesomeIcon 兼容性 (3a331d7)
- mock数据 (a7c3606)
- readme: 更新 Vite 和 ESLint 版本号,调整测试通过平台说明 (51dc1e6)
- release: 添加版本发布脚本和更新类型定义 (cf2cadd)
- tabBar页面登录优化 (825db53)
- tabBar页面登录优化 (62d62ed)
- useRoute and useRouter Hook (b672549)
- vite-config: 添加页面配置文件至重启监听列表 (1e7a1cc)
- 使用uni-mini-router路由管理 (71c0de1)
- 兼容多端统一配置BASE_URL环境变量 (6ca18b4)
- 在生产环境中排除 mock 数据 (0598f3a)
- 增加 iconify 组件,可任意使用全网图标 (f6b06d5)
- 增加commitlint提交方式 (ec1d011)
- 完善FontAwesomeIcon demo (7b9a1e8)
- 完善部分代码 (862ee17)
- 完整显示图标 (b60f7fa)
- 引入
uni-vue-devtools
,并配置dev:mp-weixin
自动启动 (fd44193) - 当前platform(平台) (3a83e5b)
- 改用alova请求 (bb83550)
- 新增 VITE_USE_MOCK 配置 (ac3b3ad)
- 新增[unplugin-auto-import] 自动导入 (26f1911)
- 新增设置系统剪贴板的内容工具函数 (b7ccd95)
🐛 Bug Fixes | Bug 修复
- [H5]:运行环境判断错误 (0b3f560)
- http: 修复 http 配置错误 (b3a0ea7)
- Iconify: 修复在父组件使用 Iconify 组件时,tailwindcss 的 class无效的问题 (b9f433a)
- 修复 eslint 扁平化配置错误 (b26db07)
- 修复在小程序中获取当前平台使用 process.env['UNI_PLATFORM'] 无效问题 (ff4b1f9)
- 修复文件路径大小写手误告警 (9748797)
- 修复没有正确配置 eslint 扁平化配置的问题 (81d1b6c)
- 修复跳转到登录页面传参错误 (b5f7e31)
- 修改 AppProvider 组件的文件名为 index.vue (6cad0d4)
- 导入 'uni-mini-router' 类型不正确问题 (f997a9d)
- 开发环境 h5 代理配置 (8cc0fc9)
- 忽略 *.local 本地配置文件 (58b83be)
- 移动 env.d.ts 到 types 目录 (03bc0d8)
- 移除无关项 (e3c3759)
- 解决无模块 'uview-plus' 问题,并扩展 uni.$u 类型支持 (0a0f4ce)
💄 Styles | 风格
- eslint 格式化代码 (0fea321)
- manifest.json (c064617)
- remove console.log (095dfbb)
- 优化路由跳转 (f7a5f35)
- 优化路由跳转 (43786d6)
- 换行改为CRLF (7e141b6)
- 更改cache文件夹名 (4d62958)
- 格式化 (002325b)
💄 Refactor | 重构
- build: 简化代理配置并更新HTTP错误处理重构代理配置,提取到proxy.ts中以简化vite.config.ts中的代码。同时,修改了faultTolerance.ts中的HTTP错误处理,使用具体的ResultEnum替代类型导入,以提高代码的准确性和可读性。 (79240a2)
- components: remove unused BasicInput, Iconify, and Test componentsRemove the unused BasicInput, Iconify, and Test components to clean up the codebase. (743a021)
- http: 升级alova到v3, 优化状态码和逻辑错误处理 (5a705f9)
- iconify: 更新图标组件并调整样式 (26a8bfb)
- Request使用依赖 @luch-request (b1ec215)
- tailwindcss 替换 unocss (09e4093)
⚡ Performance Improvements | 性能优化
- httpRequest 优化 (d6b7132)
- 优化登录体验 (d64ee1c)
- 优化部分代码 (421ec1c)
- 使用组合式 store (a772075)
- 注释logout api 的调用 (7bc5b4c)
- 获取Platform(平台)优化 (8232791)
- 路由优化 (4057671)
- 路由优化 (cd50917)
2.0.0 (2024-08-20)
✨ Features | 新功能
- 当前platform(平台) (3a83e5b)
- 改用alova请求 (bb83550)
- 兼容多端统一配置BASE_URL环境变量 (6ca18b4)
- 使用uni-mini-router路由管理 (71c0de1)
- 完善部分代码 (862ee17)
- 完善FontAwesomeIcon demo (7b9a1e8)
- 完整显示图标 (b60f7fa)
- 新增 VITE_USE_MOCK 配置 (ac3b3ad)
- 新增[unplugin-auto-import] 自动导入 (26f1911)
- 新增设置系统剪贴板的内容工具函数 (b7ccd95)
- 引入
uni-vue-devtools
,并配置dev:mp-weixin
自动启动 (fd44193) - 在生产环境中排除 mock 数据 (0598f3a)
- 增加 iconify 组件,可任意使用全网图标 (f6b06d5)
- 增加commitlint提交方式 (ec1d011)
- Added utility function - judgePlatform (e28a64a)
- duotone图标样式配置 (998c87f)
- FontAwesomeIcon (89a695f)
- FontAwesomeIcon 兼容性 (3a331d7)
- FontAwesomeIcon click emit (f8866ec)
- FontAwesomeIcon counter (6de5d36)
- FontAwesomeIcon demo example (460387c)
- FontAwesomeIcon stack example (e587fb5)
- mock数据 (a7c3606)
- readme: 更新 Vite 和 ESLint 版本号,调整测试通过平台说明 (51dc1e6)
- release: 添加版本发布脚本和更新类型定义 (cf2cadd)
- tabBar页面登录优化 (825db53)
- tabBar页面登录优化 (62d62ed)
- useRoute and useRouter Hook (b672549)
- vite-config: 添加页面配置文件至重启监听列表 (1e7a1cc)
🐛 Bug Fixes | Bug 修复
- [H5]:运行环境判断错误 (0b3f560)
- 导入 'uni-mini-router' 类型不正确问题 (f997a9d)
- 忽略 *.local 本地配置文件 (58b83be)
- 解决无模块 'uview-plus' 问题,并扩展 uni.$u 类型支持 (0a0f4ce)
- 开发环境 h5 代理配置 (8cc0fc9)
- 修复 eslint 扁平化配置错误 (b26db07)
- 修复没有正确配置 eslint 扁平化配置的问题 (81d1b6c)
- 修复跳转到登录页面传参错误 (b5f7e31)
- 修复文件路径大小写手误告警 (9748797)
- 修复在小程序中获取当前平台使用 process.env['UNI_PLATFORM'] 无效问题 (ff4b1f9)
- 修改 AppProvider 组件的文件名为 index.vue (6cad0d4)
- 移除无关项 (e3c3759)
- 移动 env.d.ts 到 types 目录 (03bc0d8)
💄 Styles | 风格
- 格式化 (002325b)
- 更改cache文件夹名 (4d62958)
- 换行改为CRLF (7e141b6)
- 优化路由跳转 (f7a5f35)
- 优化路由跳转 (43786d6)
- eslint 格式化代码 (0fea321)
- manifest.json (c064617)
- remove console.log (095dfbb)
💄 Refactor | 重构
- build: 简化代理配置并更新HTTP错误处理重构代理配置,提取到proxy.ts中以简化vite.config.ts中的代码。同时,修改了faultTolerance.ts中的HTTP错误处理,使用具体的ResultEnum替代类型导入,以提高代码的准确性和可读性。 (79240a2)
- components: remove unused BasicInput, Iconify, and Test componentsRemove the unused BasicInput, Iconify, and Test components to clean up the codebase. (743a021)
- http: 升级alova到v3, 优化状态码和逻辑错误处理 (5a705f9)
- iconify: 更新图标组件并调整样式 (26a8bfb)
- Request使用依赖 @luch-request (b1ec215)
- tailwindcss 替换 unocss (09e4093)