feat: JSSlot prop export result add id

This commit is contained in:
liujuping 2023-03-31 17:04:49 +08:00 committed by JackLian
parent 115db19ab4
commit 9b7462b8a4

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,
};
}