Files
orion-visor/orion-ops-ui/src/store/index.ts
2023-08-09 15:45:33 +08:00

17 lines
345 B
TypeScript

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