mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-03-31 21:30:22 +08:00
123 lines
2.9 KiB
JSON
123 lines
2.9 KiB
JSON
{
|
|
"app": {
|
|
"version": "example/v1",
|
|
"metadata": {
|
|
"name": "nested_components",
|
|
"description": "nested components example"
|
|
},
|
|
"spec": {
|
|
"components": [
|
|
{
|
|
"id": "root",
|
|
"type": "chakra_ui/v1/root",
|
|
"properties": {},
|
|
"traits": []
|
|
},
|
|
{
|
|
"id": "tabs",
|
|
"type": "chakra_ui/v1/tabs",
|
|
"properties": {
|
|
"tabNames": ["Tab One", "Tab Two"],
|
|
"initialSelectedTabIndex": 1
|
|
},
|
|
"traits": [
|
|
{
|
|
"type": "core/v1/slot",
|
|
"properties": {
|
|
"container": {
|
|
"id": "root",
|
|
"slot": "root"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "btn",
|
|
"type": "chakra_ui/v1/button",
|
|
"properties": {
|
|
"text": {
|
|
"raw": "only in tab {{ $slot.tabIndex + 1 }}",
|
|
"format": "plain"
|
|
}
|
|
},
|
|
"traits": [
|
|
{
|
|
"type": "core/v1/slot",
|
|
"properties": {
|
|
"container": {
|
|
"id": "tabs",
|
|
"slot": "content"
|
|
},
|
|
"ifCondition": "{{ $slot.tabIndex === 0 }}"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "text",
|
|
"type": "core/v1/text",
|
|
"properties": {
|
|
"value": {
|
|
"raw": "in tab3",
|
|
"format": "plain"
|
|
}
|
|
},
|
|
"traits": [
|
|
{
|
|
"type": "core/v1/slot",
|
|
"properties": {
|
|
"container": {
|
|
"id": "nested_tabs",
|
|
"slot": "content"
|
|
},
|
|
"ifCondition": "{{ $slot.tabIndex === 0 }}"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "text_2",
|
|
"type": "core/v1/text",
|
|
"properties": {
|
|
"value": {
|
|
"raw": "also in tab3",
|
|
"format": "plain"
|
|
}
|
|
},
|
|
"traits": [
|
|
{
|
|
"type": "core/v1/slot",
|
|
"properties": {
|
|
"container": {
|
|
"id": "nested_tabs",
|
|
"slot": "content"
|
|
},
|
|
"ifCondition": "{{ $slot.tabIndex === 0 }}"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "nested_tabs",
|
|
"type": "chakra_ui/v1/tabs",
|
|
"properties": {
|
|
"tabNames": ["Tab Three", "Tab Four"]
|
|
},
|
|
"traits": [
|
|
{
|
|
"type": "core/v1/slot",
|
|
"properties": {
|
|
"container": {
|
|
"id": "tabs",
|
|
"slot": "content"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|