feat: JSSlot prop export result add id

This commit is contained in:
liujuping 2023-03-31 17:04:49 +08:00 committed by 林熠
parent 4bb4296229
commit aafd57cae2

View File

@ -302,6 +302,7 @@ export class Prop implements IProp, IPropParent {
type: 'JSSlot',
params: schema.params,
value: schema,
id: schema.id,
};
}
return {
@ -310,6 +311,7 @@ export class Prop implements IProp, IPropParent {
value: schema.children,
title: schema.title,
name: schema.name,
id: schema.id,
};
}