fix: Simple设计器修改不生效

This commit is contained in:
LesanOuO 2025-01-04 09:35:44 +08:00
parent 98774ecc6d
commit a9b5a7f006

View File

@ -40,7 +40,7 @@ defineOptions({
name: 'SimpleProcessDesigner'
})
const emits = defineEmits(['success']) //
const emits = defineEmits(['success', 'init-finished']) //
const props = defineProps({
modelId: {
@ -263,6 +263,7 @@ onMounted(async () => {
}
} finally {
loading.value = false
emits('init-finished')
}
})