fix:更新IComponent接口

This commit is contained in:
lhj
2024-11-09 23:34:44 +08:00
parent 91471748f3
commit b0984589f4
2 changed files with 4 additions and 2 deletions

View File

@ -13,9 +13,9 @@
}, },
"style": "", "style": "",
"class": "", "class": "",
"visible": true,
"slots": {}, "slots": {},
"disable": true, "disable": true,
"visible": true,
"events": {}, "events": {},
"loop": {}, "loop": {},
"children": [] "children": []

View File

@ -11,5 +11,7 @@ export interface IComponent {
slots:IComponent[]; slots:IComponent[];
orchestrations:JSON; orchestrations:JSON;
version:string; version:string;
loop:JSON loop:JSON;
disable: boolean,
visible: boolean,
} }