d025c1569e
Bumps the non-breaking-changes group with 4 updates in the / directory: [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue), [pinia](https://github.com/vuejs/pinia), [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) and [axios](https://github.com/axios/axios). Updates `@vitejs/plugin-vue` from 5.1.1 to 5.1.2 - [Release notes](https://github.com/vitejs/vite-plugin-vue/releases) - [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.1.2/packages/plugin-vue) Updates `pinia` from 2.1.7 to 2.2.0 - [Release notes](https://github.com/vuejs/pinia/releases) - [Commits](https://github.com/vuejs/pinia/compare/pinia@2.1.7...pinia@2.2.0) Updates `lucide-vue-next` from 0.418.0 to 0.419.0 - [Release notes](https://github.com/lucide-icons/lucide/releases) - [Commits](https://github.com/lucide-icons/lucide/commits/0.419.0/packages/lucide-vue-next) Updates `axios` from 1.7.2 to 1.7.3 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.7.2...v1.7.3) --- updated-dependencies: - dependency-name: "@vitejs/plugin-vue" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: non-breaking-changes - dependency-name: pinia dependency-type: direct:production update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: lucide-vue-next dependency-type: direct:production update-type: version-update:semver-minor dependency-group: non-breaking-changes - dependency-name: axios dependency-type: direct:production update-type: version-update:semver-patch dependency-group: non-breaking-changes ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
access | ||
chart-ui | ||
common-ui | ||
hooks | ||
layouts | ||
request | ||
README.md |
README.md
Effects 目录
effects
目录专门用于存放与副作用相关的代码和逻辑。如果你的包具有以下特点,建议将其放置在 effects
目录下:
- 状态管理:使用状态管理框架
pinia
,并包含处理副作用(如异步操作、API 调用)的部分。 - 用户偏好设置:使用
@vben-core/preferences
处理用户偏好设置,涉及本地存储或浏览器缓存逻辑(如使用localStorage
)。 - 导航和路由:处理导航、页面跳转等场景,需要管理路由变化的逻辑。
- 组件库依赖:包含与特定组件库紧密耦合或依赖大型仓库的部分。
通过将相关代码归类到 effects
目录,可以使项目结构更加清晰,便于维护和扩展。