mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-06-11 01:25:06 +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};
|