2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00

feat: 添加应用图标

This commit is contained in:
耗子
2024-10-17 21:22:26 +08:00
parent f6fec06e82
commit 67a6d5cea8
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ type App struct {
// AppCenter 应用中心结构
type AppCenter struct {
Icon string `json:"icon"`
Name string `json:"name"`
Description string `json:"description"`
Slug string `json:"slug"`

View File

@@ -25,7 +25,7 @@ const columns: any = [
render(row: any) {
return h(TheIcon, {
icon: row.icon,
size: 24
size: 26
})
}
},