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