UnisKB/ui/src/stores/index.ts

10 lines
186 B
TypeScript
Raw Normal View History

2023-09-15 09:40:35 +00:00
import type { App } from "vue";
import { createPinia } from "pinia";
const store = createPinia();
export function setupStore(app: App<Element>) {
app.use(store);
}
export { store };