## 样式设置

- 没有动画 - 设置`animated`为false，就可以让切换没有动画
- 标签页式切换 - 设置`tabType`为card就可以使用标签页式切换

```json
{
    "body": [
        {
            "type": "tabs",
            "animated": false,
            "tabType": "card",
            "tabs": [
                {
                    "title": "A",
                    "children": [
                        {
                            "type": "text",
                            "text": "AAA"
                        }
                    ]
                },
                {
                    "title": "B",
                    "children": [
                        {
                            "type": "text",
                            "text": "BBB"
                        }
                    ]
                }
            ]
        }
    ]
}
```
