Files
orion-visor/orion-ops-ui/src/store/index.ts

15 lines
283 B
TypeScript
Raw Normal View History

2023-07-24 10:05:07 +08:00
import { createPinia } from 'pinia';
import useAppStore from './modules/app';
import useUserStore from './modules/user';
import useTabBarStore from './modules/tab-bar';
const pinia = createPinia();
2023-07-27 18:48:15 +08:00
export {
useAppStore,
useUserStore,
useTabBarStore
};
2023-07-24 10:05:07 +08:00
export default pinia;