chore(tmagic-form-runtime): 销毁app

This commit is contained in:
roymondchen 2024-03-13 16:34:40 +08:00
parent 52f09f9f22
commit 8c9018407a

View File

@ -23,7 +23,7 @@ export const useFormConfig = (props: AppProps) => {
// @ts-ignore
const formConfig = computed(() => props.fillConfig((config.value?.items || []) as FormConfig, mForm));
const app: Core | undefined = new Core({
let app: Core | undefined = new Core({
ua: contentWindow?.navigator.userAgent,
platform: 'editor',
});
@ -137,6 +137,7 @@ export const useFormConfig = (props: AppProps) => {
contentWindow?.addEventListener('message', runtimeReadyHandler);
onBeforeUnmount(() => {
app = undefined;
contentWindow?.removeEventListener('message', runtimeReadyHandler);
});