chatup / src /store /index.ts
dvc890's picture
Duplicate from dvc890/chatup
a7b502d
import type { App } from 'vue'
import { createPinia } from 'pinia'
export const store = createPinia()
export function setupStore(app: App) {
app.use(store)
}
export * from './modules'