ruoyi-plus-vben5/apps/web-antd/src/store/index.ts
2024-06-23 23:18:55 +08:00

17 lines
414 B
TypeScript

import type { InitStoreOptions } from '@vben-core/stores';
import type { App } from 'vue';
import { initStore, useAccessStore, useTabsStore } 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, useAccessStore, useTabsStore };