| 123456789101112131415161718192021 |
- /*
- * @Author: liuJie
- * @Date: 2026-01-26 21:52:39
- * @LastEditors: liuJie
- * @LastEditTime: 2026-01-27 10:10:22
- * @Describe: file describe
- */
- import type { App } from "vue";
- import { createPinia } from "pinia";
- import useComponentMapInspector from "@/store/modules/materialSetterMaps.store"
- import useConditionOptionsStore from "@/store/modules/conditionNode.store"
- import useHttpOptionsStore from "@/store/modules/httpNode.store"
- const pinia = createPinia();
- const store = (app: App<Element>) => {
- app.use(pinia);
- }
- export { useComponentMapInspector, useConditionOptionsStore, useHttpOptionsStore };
- export default store;
|