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
28 lines
855 B
import { createPinia } from 'pinia'
|
|
import { useTestStore } from './modules/test'
|
|
import { useSettingStore } from './modules/setting'
|
|
import { useOperatorStore } from './modules/operator'
|
|
import { useWebSocketStore } from './modules/websocket'
|
|
import { useDeviceStore } from './modules/device'
|
|
import { useUserStore } from './modules/user'
|
|
import { useEchartsStore } from './modules/echarts'
|
|
import { usePreStore } from './modules/preinstall'
|
|
import { useAuditStore } from './modules/audit'
|
|
import { useFormulaStore } from './modules/formula'
|
|
import { useRunningStore } from './modules/running'
|
|
const store = createPinia()
|
|
|
|
export default store
|
|
export {
|
|
useTestStore,
|
|
useFormulaStore,
|
|
useAuditStore,
|
|
useRunningStore,
|
|
useSettingStore,
|
|
useOperatorStore,
|
|
useWebSocketStore,
|
|
useDeviceStore,
|
|
useEchartsStore,
|
|
useUserStore,
|
|
usePreStore,
|
|
}
|