| 12345678910111213141516171819202122232425262728 |
- /*
- * @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'
- import { useDashboardStore } from './modules/dashboard'
- const pinia = createPinia()
- const store = (app: App<Element>) => {
- app.use(pinia)
- }
- export {
- useComponentMapInspector,
- useConditionOptionsStore,
- useHttpOptionsStore,
- useDashboardStore
- }
- export default store
|