Files
kt-financial-system/apps/web-antd/src/store/index.ts
2024-07-05 23:15:46 +08:00

20 lines
451 B
TypeScript

import type { InitStoreOptions } from '@vben-core/stores';
import type { App } from 'vue';
import { initStore } from '@vben-core/stores';
/**
* @zh_CN 初始化pinia
* @param app vue app 实例
*/
async function setupStore(app: App, options: InitStoreOptions) {
const pinia = await initStore(options);
app.use(pinia);
}
export { setupStore };
export { useAccessStore } from './modules/access';
export { useAppStore } from './modules/app';