Files
Cli-Proxy-API-Management-Ce…/src/stores/index.ts
Supra4E8C da9469c5aa feat: add models cache store and fix search placeholder truncation
- Add useModelsStore with 30s cache for model list to reduce API calls
  - Refactor SystemPage to use cached models from store
  - Shorten ConfigPage search placeholder to prevent text truncation
2025-12-13 01:35:08 +08:00

11 lines
356 B
TypeScript

/**
* Zustand Stores 统一导出
*/
export { useNotificationStore } from './useNotificationStore';
export { useThemeStore } from './useThemeStore';
export { useLanguageStore } from './useLanguageStore';
export { useAuthStore } from './useAuthStore';
export { useConfigStore } from './useConfigStore';
export { useModelsStore } from './useModelsStore';