日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

menu

更新時(shí)間:

menu表示組件的配置項(xiàng)類型為菜單。菜單用來組織配置項(xiàng)的結(jié)構(gòu),目前支持一級(jí)菜單和二級(jí)菜單。

菜單樣式

  • 一級(jí)菜單一級(jí)菜單
  • 二級(jí)菜單二級(jí)菜單

配置項(xiàng)說明

字段名 含義 類型 是否必選 備注
name 顯示名 string 無。
type 類型 string 無。
default 默認(rèn)值 object 不填時(shí)值為空。
children 菜單內(nèi)容 object 默認(rèn)為{}。必須包含modename字段。
  • mode:是否嵌套了二級(jí)菜單,"single"表示僅有一級(jí)菜單,"multiple"表示有二級(jí)菜單。
  • name:菜單名。

值說明

條件 數(shù)據(jù)類型 示例 默認(rèn)值
不涉及 object
"options": {
   "menuA": {
     "switch": true
   },
   "menuB": {
     "menuB1": {
       "text": "Hello"
     },
     "menuB2": {
       "stepper": 2
     }
   }
 }
{}

配置示例

menu配置示例
"options": {
    "name": "菜單",
    "type": "menu",
    "children": {
      "menuA": {
        "name": "菜單A",
        "mode": "single",
        "children": {
          "switch": {
            "name": "開關(guān)",
            "type": "switch",
            "default": true
          }
        }
      },
      "menuB": {
        "name": "菜單B",
        "mode": "multiple",
        "children": {
          "menuB1": {
            "name": "菜單B1",
            "children": {
              "text": {
                "name": "文本",
                "type": "text",
                "default": "Hello"
              }
            }
          },
          "menuB2": {
            "name": "菜單B2",
            "children": {
              "stepper": {
                "name": "步進(jìn)器",
                "type": "stepper",
                "default": 1
              }
            }
          }
        }
      }
    }
}