menu
更新時(shí)間:
menu表示組件的配置項(xiàng)類型為菜單。菜單用來組織配置項(xiàng)的結(jié)構(gòu),目前支持一級(jí)菜單和二級(jí)菜單。
菜單樣式
- 一級(jí)菜單
- 二級(jí)菜單
配置項(xiàng)說明
字段名 | 含義 | 類型 | 是否必選 | 備注 |
name |
顯示名 | string | 是 | 無。 |
type |
類型 | string | 是 | 無。 |
default |
默認(rèn)值 | object | 否 | 不填時(shí)值為空。 |
children |
菜單內(nèi)容 | object | 否 | 默認(rèn)為{} 。必須包含mode 和name 字段。
|
值說明
條件 | 數(shù)據(jù)類型 | 示例 | 默認(rèn)值 |
不涉及 | object |
|
|
配置示例
"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
}
}
}
}
}
}
}
文檔內(nèi)容是否對(duì)您有幫助?