mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
9 lines
187 B
TypeScript
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';
|