vue-vben-admin/packages/effects/README.md

9 lines
511 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.

# effects
用于存放与副作用相关的代码和逻辑。如果你的包有下面的特点,那么你可以考虑将其放在 effects 目录下:
- 涉及到状态管理框架 pinia可能包含处理副作用如异步操作、调用 API的部分。
- 涉及到用户偏好设置 @vben-core/preferences处理本地存储或浏览器缓存的逻辑使用到了localStorage。
- 涉及到导航、页面跳转等场景,包含处理路由变化的逻辑。
- 耦合的组件库及大仓依赖