Files
front/src/store/index.ts
2026-03-05 23:45:39 +08:00

10 lines
269 B
TypeScript

import { createPinia } from 'pinia'
import useAppStore from './modules/app'
import useTabBarStore from './modules/tab-bar'
import useUserStore from './modules/user'
const pinia = createPinia()
export { useAppStore, useTabBarStore, useUserStore }
export default pinia