zym2525
2025-03-09 c4db0ed5c4218dba29c9924511dc2bbcf169d468
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 };