大空间消毒机
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
855 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. import { createPinia } from 'pinia'
  2. import { useTestStore } from './modules/test'
  3. import { useSettingStore } from './modules/setting'
  4. import { useOperatorStore } from './modules/operator'
  5. import { useWebSocketStore } from './modules/websocket'
  6. import { useDeviceStore } from './modules/device'
  7. import { useUserStore } from './modules/user'
  8. import { useEchartsStore } from './modules/echarts'
  9. import { usePreStore } from './modules/preinstall'
  10. import { useAuditStore } from './modules/audit'
  11. import { useFormulaStore } from './modules/formula'
  12. import { useRunningStore } from './modules/running'
  13. const store = createPinia()
  14. export default store
  15. export {
  16. useTestStore,
  17. useFormulaStore,
  18. useAuditStore,
  19. useRunningStore,
  20. useSettingStore,
  21. useOperatorStore,
  22. useWebSocketStore,
  23. useDeviceStore,
  24. useEchartsStore,
  25. useUserStore,
  26. usePreStore,
  27. }