index.ts 185 B

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