@cloudbase/lowcode-builder 1.8.85 → 1.8.86
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/lowcode-builder",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.86",
|
|
4
4
|
"description": "云开发 Tencent CloudBase Framework Low Code Plugin,将低码配置生成完整项目并一键部署云开发资源。",
|
|
5
5
|
"author": "yhsunshining@gmail.com",
|
|
6
6
|
"homepage": "https://github.com/TencentCloudBase/cloudbase-framework#readme",
|
|
@@ -310,10 +310,12 @@ export function createPage({
|
|
|
310
310
|
this._disposers.push(...runWatchers(index, this));
|
|
311
311
|
|
|
312
312
|
await this.beforePageCustomLaunch?.(this._query);
|
|
313
|
-
|
|
314
|
-
|
|
313
|
+
setTimeout(async () => {
|
|
314
|
+
const hook = lifecycle.onReady || lifecycle.onPageReady;
|
|
315
|
+
await hook?.call?.($page);
|
|
315
316
|
|
|
316
|
-
|
|
317
|
+
this._invokeEventHandler('ready');
|
|
318
|
+
}, 100);
|
|
317
319
|
},
|
|
318
320
|
onUnload() {
|
|
319
321
|
const $page = this._getInstance();
|