wms-antdvue/.svn/pristine/d8/d885dfb3ed14158f0267e45913bba3957cddb502.svn-base
2024-11-07 16:33:03 +08:00

11 lines
187 B
Plaintext

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