Spaces:
Runtime error
Runtime error
File size: 189 Bytes
41af422 |
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'
|