@tarojs/runtime 3.6.7-alpha.0 → 3.6.7-alpha.1
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/dist/runtime.esm.js +1 -1
- package/dist/runtime.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/runtime.esm.js
CHANGED
|
@@ -2661,7 +2661,7 @@ class TaroRootElement extends TaroElement {
|
|
|
2661
2661
|
}
|
|
2662
2662
|
performUpdate(initRender = false, prerender) {
|
|
2663
2663
|
this.pendingUpdate = true;
|
|
2664
|
-
const ctx = this.ctx;
|
|
2664
|
+
const ctx = hooks.call('proxyToRaw', this.ctx);
|
|
2665
2665
|
setTimeout(() => {
|
|
2666
2666
|
const setDataMark = `${SET_DATA} 开始时间戳 ${Date.now()}`;
|
|
2667
2667
|
perf.start(setDataMark);
|