refactor(editor): form-panel mounted事件参数

This commit is contained in:
roymondchen 2025-01-06 19:32:40 +08:00
parent 8feac3861e
commit e57fc7b718

View File

@ -148,8 +148,10 @@ const errorHandler = (e: any) => {
emit('form-error', e);
};
const mountedHandler = (e: InstanceType<typeof FormPanel>) => {
emit('mounted', e);
const mountedHandler = () => {
if (propertyFormPanelRef.value) {
emit('mounted', propertyFormPanelRef.value);
}
};
const propsPanelEl = useTemplateRef('propsPanel');