mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(editor): stage销毁问题
This commit is contained in:
parent
a2c79c79cd
commit
0d901c018f
@ -1,4 +1,4 @@
|
||||
import { computed, onBeforeUnmount, watch } from 'vue';
|
||||
import { computed, watch } from 'vue';
|
||||
|
||||
import type { MNode } from '@tmagic/core';
|
||||
import StageCore, { GuidesType, RemoveEventData, SortEventData, UpdateEventData } from '@tmagic/stage';
|
||||
@ -131,9 +131,5 @@ export const useStage = (stageOptions: StageOptions) => {
|
||||
}
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
stage.destroy();
|
||||
});
|
||||
|
||||
return stage;
|
||||
};
|
||||
|
@ -123,6 +123,10 @@ watchEffect(() => {
|
||||
});
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
stage?.destroy();
|
||||
});
|
||||
|
||||
watch(zoom, (zoom) => {
|
||||
if (!stage || !zoom) return;
|
||||
stage.setZoom(zoom);
|
||||
|
@ -8,7 +8,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, inject, ref, watch } from 'vue';
|
||||
import { computed, inject, onBeforeUnmount, ref, watch } from 'vue';
|
||||
import { CloseBold } from '@element-plus/icons-vue';
|
||||
|
||||
import { TMagicIcon } from '@tmagic/design';
|
||||
@ -62,6 +62,11 @@ watch(stageOverlay, (stageOverlay) => {
|
||||
}
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
services?.stageOverlayService.get('stage')?.destroy();
|
||||
services?.stageOverlayService.set('stage', null);
|
||||
});
|
||||
|
||||
const closeOverlayHandler = () => {
|
||||
services?.stageOverlayService.closeOverlay();
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user