- 新增 adminSettings store 管理 ops 配置状态 - 注册 adminSettings store 到全局 store - 添加 ops 监控相关路由(dashboard, alerts, realtime, settings)
15 lines
493 B
TypeScript
15 lines
493 B
TypeScript
/**
|
|
* Pinia Stores Export
|
|
* Central export point for all application stores
|
|
*/
|
|
|
|
export { useAuthStore } from './auth'
|
|
export { useAppStore } from './app'
|
|
export { useAdminSettingsStore } from './adminSettings'
|
|
export { useSubscriptionStore } from './subscriptions'
|
|
export { useOnboardingStore } from './onboarding'
|
|
|
|
// Re-export types for convenience
|
|
export type { User, LoginRequest, RegisterRequest, AuthResponse } from '@/types'
|
|
export type { Toast, ToastType, AppState } from '@/types'
|