WholeProcessPlatform/frontend/src/store/index.ts
2026-03-25 10:02:19 +08:00

12 lines
208 B
TypeScript

import type { App } from 'vue';
import { createPinia } from 'pinia';
const store = createPinia();
// 全局挂载store
export function setupStore(app: App<Element>) {
app.use(store);
}
export { store };