## 同步测试

container 同步测试

```json
{
    "body": [{
         "type": "container",
         "model": "root",
         "data": {
            "age": 10,
            "hidden": false
         },
         "children": [
             {
                 "type": "input",
                 "name": "age"
             },
             {
                "type": "row",
                "hidden": "#ES{$data.hidden}",
                "children": [{
                      "type": "container",
                      "model": "textContainer",
                      "children": [{
                          "type": "text",
                          "text": "#ES{$parent.age}"
                      }]
                  }]
             },
             {
                 "type": "container",
                 "model": "otherContainer",
                 "children": [{
                     "type": "button",
                     "text": "button container"
                 }]
             }
         ]
     }]
}
```
