-
zhangwei
6 天以前 0543f4989353b1ea9e83e3c5e6b14abd56b69167
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 };