fix(stage): 防止runtime重复注册

This commit is contained in:
roymondchen 2025-03-06 20:10:52 +08:00
parent ff07147270
commit 63fe6ec68b

View File

@ -56,6 +56,10 @@ export default class StageRender extends EventEmitter {
public getMagicApi = () => ({
onPageElUpdate: (el: HTMLElement) => this.emit('page-el-update', el),
onRuntimeReady: (runtime: Runtime) => {
if (this.runtime) {
return;
}
this.runtime = runtime;
// @ts-ignore
globalThis.runtime = runtime;