chatgpt-web / src /store /index.ts
imseldrith's picture
Upload with huggingface_hub (#1)
3d83f0d
raw
history blame
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'