Fix closing world export dialog

This commit is contained in:
Natsumi
2025-08-15 19:25:52 +12:00
parent f5c597e216
commit ba763b9764

View File

@@ -94,7 +94,7 @@
} }
}); });
const emit = defineEmits(['update:WorldExportDialogVisible']); const emit = defineEmits(['update:worldExportDialogVisible']);
const { t } = useI18n(); const { t } = useI18n();
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
@@ -128,7 +128,7 @@
return props.worldExportDialogVisible; return props.worldExportDialogVisible;
}, },
set(value) { set(value) {
emit('update:WorldExportDialogVisible', value); emit('update:worldExportDialogVisible', value);
} }
}); });