y001j's picture
Upload 305 files
af9251e
raw
history blame contribute delete
189 Bytes
import type { App } from 'vue'
import { createPinia } from 'pinia'
export const store = createPinia()
export function setupStore(app: App) {
app.use(store)
}
export * from './modules'