index.ts 191 B

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