1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-01-03 08:15:31 +00:00
ArisuAutoSweeper/webapp/packages/renderer/src/store/index.ts
2023-11-01 15:33:35 +08:00

11 lines
181 B
TypeScript

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