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

17 lines
349 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';
2023-08-08 17:59:37 +08:00
import useMenuStore from './modules/system/menu';
2023-07-24 10:05:07 +08:00
const pinia = createPinia();
2023-07-27 18:48:15 +08:00
export {
useAppStore,
useUserStore,
2023-08-08 17:59:37 +08:00
useTabBarStore,
useMenuStore
2023-07-27 18:48:15 +08:00
};
2023-07-24 10:05:07 +08:00
export default pinia;