From 503d716ddcc9c0711688f414c63c987b708442cf Mon Sep 17 00:00:00 2001 From: inter Date: Mon, 8 Sep 2025 16:36:33 +0800 Subject: [PATCH] Add File --- frontend/src/stores/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/src/stores/index.ts diff --git a/frontend/src/stores/index.ts b/frontend/src/stores/index.ts new file mode 100644 index 0000000..65964ea --- /dev/null +++ b/frontend/src/stores/index.ts @@ -0,0 +1,10 @@ +import type { App } from 'vue' +import { createPinia } from 'pinia' + +const store = createPinia() + +export const setupStore = (app: App) => { + app.use(store) +} + +export { store }