Files
geg-gas-web/src/store/index.ts

11 lines
187 B
TypeScript
Raw Normal View History

import type { App } from 'vue';
import { createPinia } from 'pinia';
const store = createPinia();
export function setupStore(app: App<Element>) {
app.use(store);
}
export { store };