ruoyi-plus-soybean/src/store/index.ts

11 lines
217 B
TypeScript
Raw Normal View History

import type { App } from 'vue';
import { createPinia } from 'pinia';
export function setupStore(app: App) {
const store = createPinia();
app.use(store);
}
2021-11-04 15:01:06 +08:00
export * from './modules';
export * from './subscribe';