mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
10 lines
186 B
TypeScript
10 lines
186 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 };
|