mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-30 10:27:51 +00:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import type { App } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
export function setupStore(app: App) {
|
|
const store = createPinia()
|
|
app.use(store)
|
|
}
|
|
|
|
export * from './modules'
|