zhangwei
2025-07-23 4157b22112dd8d87e907d9cb6d14f74b5d454b7a
1
2
3
4
5
6
7
8
9
import type { App } from "vue";
import { createPinia } from "pinia";
const store = createPinia();
 
export function setupStore(app: App<Element>) {
  app.use(store);
}
 
export { store };