@linyjs/plugin-docs 0.0.15 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/docs/api-reference/index.md +3 -0
- package/docs/faq.md +4 -1
- package/docs/guides/authentication.md +313 -240
- package/docs/guides/client-hooks.md +626 -0
- package/docs/guides/client-module.md +5 -2
- package/docs/guides/client-routes.md +631 -0
- package/docs/guides/dependency-injection.md +3 -0
- package/docs/guides/permissions.md +124 -53
- package/docs/guides/server-module.md +2 -0
- package/docs/guides/shared-module-interface.md +117 -51
- package/docs/guides/state-management.md +905 -0
- package/docs/guides/ui-slots.md +4 -1
- package/package.json +1 -1
package/docs/guides/ui-slots.md
CHANGED
|
@@ -468,8 +468,11 @@ registry.register({
|
|
|
468
468
|
## 相关文档
|
|
469
469
|
|
|
470
470
|
- 📖 [客户端模块开发](./client-module.md)
|
|
471
|
+
- 🛤️ [前端页面路由](./client-routes.md)
|
|
472
|
+
- 🪝 [公共 Hooks 使用](./client-hooks.md)
|
|
473
|
+
- 📊 [前端状态管理](./state-management.md)
|
|
471
474
|
- 🔒 [权限管理](./permissions.md)
|
|
472
475
|
|
|
473
476
|
---
|
|
474
477
|
|
|
475
|
-
**上一篇**: [
|
|
478
|
+
**上一篇**: [前端状态管理](./state-management.md) | **下一篇**: [权限管理](./permissions.md)
|