| 1 | import { createPinia } from 'pinia' |
| 2 | import { useUserStore } from './user' |
| 3 | import { useAccountStore } from './account' |
| 4 | import { useAppStore } from './app' |
| 5 | |
| 6 | const pinia = createPinia() |
| 7 | |
| 8 | export default pinia |
| 9 | export { useUserStore, useAccountStore, useAppStore } |