mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-01-03 08:15:31 +00:00
11 lines
181 B
TypeScript
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};
|