mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-24 23:13:47 +00:00

* feat: i18n * chore: format * feat: 补充遗漏翻译 * chore: update deps * feat: 复制代码块[#196][#197] * chore: version 2.9.1
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import type { App } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
export const store = createPinia()
|
|
|
|
export function setupStore(app: App) {
|
|
app.use(store)
|
|
}
|
|
|
|
export * from './modules'
|