1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-06-11 01:25:06 +08:00
Files
AzurLaneAutoScript/webapp/packages/renderer/src/store/index.ts
SevCrane 5e482958f6 AlasGG
2024-06-05 23:20:28 +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};