@mpxjs/core 2.8.28-beta.5 → 2.8.31
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/package.json +2 -2
- package/src/core/proxy.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/core",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.31",
|
|
4
4
|
"description": "mpx runtime core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"miniprogram",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"url": "https://github.com/didi/mpx/issues"
|
|
48
48
|
},
|
|
49
49
|
"sideEffects": false,
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "00db3e700a9fd0a06ad188c1d9972182cac96db7"
|
|
51
51
|
}
|
package/src/core/proxy.js
CHANGED
|
@@ -410,6 +410,7 @@ export default class MpxProxy {
|
|
|
410
410
|
}
|
|
411
411
|
const subPath = aIsSubPathOfB(key, tarKey)
|
|
412
412
|
if (subPath) {
|
|
413
|
+
if (!this.miniRenderData[tarKey]) this.miniRenderData[tarKey] = {}
|
|
413
414
|
// setByPath 更新miniRenderData中的子数据
|
|
414
415
|
doGetByPath(this.miniRenderData[tarKey], subPath, (current, subKey, meta) => {
|
|
415
416
|
if (meta.isEnd) {
|