index.ts 186 B

123456789
  1. import type { App } from "vue";
  2. import { createPinia } from "pinia";
  3. const store = createPinia();
  4. export function setupStore(app: App<Element>) {
  5. app.use(store);
  6. }
  7. export { store };