mirror of
https://github.com/sui-feng-cb/AzurLaneAutoScript1.git
synced 2026-06-21 03:54:11 +08: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};
|