## 按钮组

设置mode为button可以使用按钮的形式

```json
{
    "body": [
        {
            "type": "container",
            "model": "radioButton",
            "children": [
                {
                    "type": "text",
                    "text": "中午吃啥？"
                },
                {
                    "type": "radio",
                    "name": "food",
                    "mode": "button",
                    "options": [
                        {
                            "label": "苹果",
                            "value": "apple"
                        },
                        {
                            "label": "葡萄",
                            "value": "grapes"
                        },
                        {
                            "label": "草莓",
                            "value": "strawberry"
                        }
                    ]
                },
                {
                    "type": "text",
                    "text": "#ES{$data.food}"
                }
            ]
        }
    ]
}
```
