完善我的页面

This commit is contained in:
陈淳
2022-10-09 13:30:42 +08:00
parent c7d64554ad
commit cf37f7c950
8 changed files with 1517 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
export class AppGridData{
head!: string;
body!: AppGridBody[];
}
class AppGridBody{
icon!: string;
title!: string;
}