wupengfei
4 小时以前 0ae2f2f277c9a20648e2b53a804b443e412b523a
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 };