index.ts 188 B

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