admin-vben/packages/effects
YunaiV eeb19808c9 feat: add verification comp【31315a7f】 2025-03-24 20:13:42 +08:00
..
access feat: auto set component name for keep-alive (#5690) 2025-03-10 16:25:30 +08:00
common-ui feat: add verification comp【31315a7f】 2025-03-24 20:13:42 +08:00
hooks chore: v5 init【64ed9206】 2025-03-18 13:06:04 +08:00
layouts fix: logo style in login page is affected by the globally-imported antd styles 2025-02-28 22:39:42 +08:00
plugins fix: vxeTable search button not working with slot (#5678) 2025-03-07 22:35:09 +08:00
request fix: request download and upload not support `responseReturn` (#5456) 2025-01-22 00:59:10 +08:00
README.md refactor: adjust all sample pages and use page components (#4118) 2024-08-11 20:05:52 +08:00

README.md

Effects 目录

effects 目录专门用于存放与轻微耦合相关的代码和逻辑。如果你的包具有以下特点,建议将其放置在 effects 目录下:

  • 状态管理:使用状态管理框架 pinia并包含处理副作用如异步操作、API 调用)的部分。
  • 用户偏好设置:使用 @vben-core/preferences 处理用户偏好设置,涉及本地存储或浏览器缓存逻辑(如使用 localStorage)。
  • 导航和路由:处理导航、页面跳转等场景,需要管理路由变化的逻辑。
  • 组件库依赖:包含与特定组件库紧密耦合或依赖大型仓库的部分。

通过将相关代码归类到 effects 目录,可以使项目结构更加清晰,便于维护和扩展。