You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docs/versioned_docs/version-2.0/developer-guide/theme/vo/MenuItemVo.md

1.3 KiB

{
  "metadata": {
    "name": "string",                                   // 唯一标识
    "labels": {
      "additionalProp1": "string"
    },
    "annotations": {
      "additionalProp1": "string"
    },
    "creationTimestamp": "2022-11-20T14:44:58.984Z",    // 创建时间
  },
  "spec": {
    "displayName": "string",                            // 显示名称,但是不要直接使用这个字段进行显示,最终字段为 status.displayName
    "href": "string",                                   // 链接,同样不要直接使用这个字段,最终字段为 status.href
    "priority": 0,                                      // 排序字段
    "children": [                                       // 下级菜单项,菜单项的 metadata.name 集合
      "string"
    ],
    "targetRef": {                                      // 与其他资源比如文章的关联,一般无需直接使用
      "group": "string",
      "version": "string",
      "kind": "string",
      "name": "string"
    }
  },
  "status": {
    "displayName": "string",                            // 显示名称
    "href": "string"                                    // 链接
  },
  "children": "List<#MenuItemVo>",                      // 下级菜单项MenuItemVo 的集合
  "parentName": "string",
}