ruoyi-plus-soybean/src/store/index.ts

11 lines
237 B
TypeScript
Raw Normal View History

import type { App } from 'vue';
import { createPinia } from 'pinia';
export const store = createPinia();
export function setupStore(app: App) {
app.use(store);
}
export { useThemeStore, useAppStore, useAuthStore } from './modules';