## 基础使用

最简单的例子就是直接使用`text`属性

```json
{
    "body": [
        {
            "type": "button",
            "text": "helloworld"
        },
        {
            "type": "button",
            "text": "blue",
            "buttonType": "primary"
        },
        {
            "type": "button",
            "text": "ghost",
            "buttonType": "ghost"
        },
        {
            "type": "button",
            "text": "dashed",
            "buttonType": "dashed"
        },
        {
            "type": "button",
            "text": "danger",
            "buttonType": "danger"
        }
    ]
}
```