jeecg-boot-vue3/src/store/index.ts

10 lines
186 B
TypeScript
Raw Normal View History

2021-10-20 06:32:09 +00:00
import type { App } from 'vue';
import { createPinia } from 'pinia';
const store = createPinia();
export function setupStore(app: App<Element>) {
app.use(store);
}
export { store };