mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-04 23:06:31 +08:00
fix(stage): 防止runtime重复注册
This commit is contained in:
parent
ff07147270
commit
63fe6ec68b
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user