Files
front/src/store/index.ts

10 lines
269 B
TypeScript
Raw Normal View History

2026-03-05 23:45:39 +08:00
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