## 设置默认值

使用defaultValue来设置默认值

```json
{
    "body": [{
        "type": "container",
        "model": "default",
        "data": {
        
        },
        "children": [{
            "type": "treeSelect",
            "name": "list",
            "treeCheckable": true,
            "defaultValue": ["bbb", "ddd"],
            "options": [
                {
                   "title": "AAA",
                   "key": "aaa"
                },
                {
                   "title": "BBB",
                   "key": "bbb"
                },
                {
                   "title": "CCC",
                   "key": "ccc",
                   "children": [
                       {
                           "title": "DDD",
                           "key": "ddd"
                       },
                       {
                           "title": "EEE",
                           "key": "eee",
                           "children": []
                       }
                   ]
                }
            ]
        }, {
            "type": "text",
            "text": "#ES{JSON.stringify($data.list)}"
        }]
    }]
}
```
