Files
SaaS-lib/lib/saas/store/index.ts

10 lines
169 B
TypeScript
Raw Normal View History

2024-05-15 17:29:42 +08:00
import type { App } from 'vue';
import { createPinia } from 'pinia';
const store = createPinia();
export function setupStore(app: App<Element>) {
app.use(store);
}