ecinc-cloud-mappaio 9.6.64 → 9.6.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -0
- package/lib/ecmappaio.common.js +329 -62
- package/lib/ecmappaio.umd.js +329 -62
- package/lib/ecmappaio.umd.min.js +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -51,8 +51,11 @@ export const lang = $lang
|
|
|
51
51
|
|
|
52
52
|
import $hequest from '../../common/request/index'
|
|
53
53
|
import $store from '../../common/store/index'
|
|
54
|
+
import $webSocket from '../../common/websocket/index'
|
|
55
|
+
|
|
54
56
|
export const httpRequest = $hequest
|
|
55
57
|
export const store = $store
|
|
58
|
+
export const webSocket = $webSocket
|
|
56
59
|
|
|
57
60
|
export default {
|
|
58
61
|
// 导出的对象必须具备一个 install 方法
|