新型管道消毒机前端代码
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.

30 lines
926 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
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. import { useHistoryStore } from './modules/history'
  14. const store = createPinia()
  15. export default store
  16. export {
  17. useTestStore,
  18. useFormulaStore,
  19. useAuditStore,
  20. useRunningStore,
  21. useSettingStore,
  22. useOperatorStore,
  23. useHistoryStore,
  24. useWebSocketStore,
  25. useDeviceStore,
  26. useEchartsStore,
  27. useUserStore,
  28. usePreStore,
  29. }