admin-vben/packages/effects
handsomeFu 8adb22847d
perf: optimize the access directive to support string passing (#4246)
* perf: 优化access指令用法并改进参数类型

重构access权限指令以接受角色和代码形式的权限检查。通过支持数组和字符串作为指令值来简化用法,从而提高灵活性。此外,改进指令绑定类型定义以提升类型安全性。

* docs: 更新中英文文档示例以支持字符串权限码绑定更新了中文和英文文档中的示例
2024-08-27 11:17:04 +08:00
..
access perf: optimize the access directive to support string passing (#4246) 2024-08-27 11:17:04 +08:00
common-ui chore(deps): bump the non-breaking-changes group with 13 updates (#4244) 2024-08-27 09:56:27 +08:00
hooks chore: release v5.1.2 2024-08-25 11:02:15 +08:00
layouts chore(deps): bump the non-breaking-changes group with 13 updates (#4244) 2024-08-27 09:56:27 +08:00
plugins chore(deps): bump the non-breaking-changes group with 13 updates (#4244) 2024-08-27 09:56:27 +08:00
request fix: when the 'refreshToken' expires, it does not re-authenticate (#4231) 2024-08-26 09:54:42 +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 目录,可以使项目结构更加清晰,便于维护和扩展。