datai-vue/src/store/index.ts
2025-12-08 22:00:21 +08:00

11 lines
210 B
TypeScript

import { createPinia } from "pinia"
import type { App } from "vue"
export const store = createPinia()
/**
* 初始化 Store
*/
export default function initStore(app: App<Element>): void {
app.use(store)
}