mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +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 = () => ({
|
public getMagicApi = () => ({
|
||||||
onPageElUpdate: (el: HTMLElement) => this.emit('page-el-update', el),
|
onPageElUpdate: (el: HTMLElement) => this.emit('page-el-update', el),
|
||||||
onRuntimeReady: (runtime: Runtime) => {
|
onRuntimeReady: (runtime: Runtime) => {
|
||||||
|
if (this.runtime) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.runtime = runtime;
|
this.runtime = runtime;
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
globalThis.runtime = runtime;
|
globalThis.runtime = runtime;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user