File size: 189 Bytes
c742717
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { App } from 'vue'
import { createPinia } from 'pinia'

export const store = createPinia()

export function setupStore(app: App) {
  app.use(store)
}

export * from './modules'