## 输入框组合

可以使用groups属性来使用输入框组合功能呢

```json
{
    "body": [
        {
            "type": "container",
            "model": "form",
            "children": [
                {
                    "type": "input",
                    "debounce": 1000,
                    "groups": [
                        {
                            "name": "name",
                            "label": "名称"
                        },
                        {
                            "name": "password",
                            "label": "密码"
                        }
                    ]
                },
                {
                    "type": "text",
                    "text": "name: #ES{$data.name}"
                },
                {
                    "type": "text",
                    "text": "password: #ES{$data.password}"
                }
            ]
        }
    ]
}
```
