This commit is contained in:
lhj
2024-09-22 01:28:02 +08:00
parent 309e045720
commit 2dccc36d32
128 changed files with 8072 additions and 3243 deletions

11
src/type/IComponent.ts Normal file
View File

@ -0,0 +1,11 @@
export interface IComponent {
type: string;
name: string;
id: string;
text:string;
designer: string;
props: JSON;
style: string;
class: string;
children: IComponent[];
}