nova-admin/src/store/index.ts
2022-08-11 13:58:28 +08:00

9 lines
187 B
TypeScript

import { createPinia } from 'pinia';
import type { App } from 'vue';
export function setupStore(app: App) {
const store = createPinia();
app.use(store);
}
export * from './modules';