zhangwei
2025-08-04 9bdd45e30e591a7a7e84c5798759e8df581792c6
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 };