CongMa / views /src /store /index.ts
XuBailing's picture
Upload 243 files
107f987
raw
history blame
No virus
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'