Files
Yi.Framework/Yi.Pure.Vue3/src/store/index.ts
2024-08-23 14:31:00 +08:00

10 lines
186 B
TypeScript

import type { App } from "vue";
import { createPinia } from "pinia";
const store = createPinia();
export function setupStore(app: App<Element>) {
app.use(store);
}
export { store };