- 添加 Guide 组件和引导步骤配置 - 实现 useOnboardingTour 和 useTourStepDescription composables - 添加 onboarding store 管理引导状态 - 更新多个视图和组件以支持引导功能 - 添加国际化支持(中英文) - 删除旧的实现指南文档
14 lines
437 B
TypeScript
14 lines
437 B
TypeScript
/**
|
|
* Pinia Stores Export
|
|
* Central export point for all application stores
|
|
*/
|
|
|
|
export { useAuthStore } from './auth'
|
|
export { useAppStore } from './app'
|
|
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'
|