- Replace invalid 'Page' and 'Card' components with valid bricks components (VBox, HBox, Filler, etc.) - Add comprehensive examples for all major bricks components in examples/ directory - Update hermes-web-cli UI files to use correct component hierarchy - Include examples for: VBox, HBox, Filler, ResponsableBox, Form, Button, Text, Modal, TabPanel, DataViewer, Tree, Image, VideoPlayer, Input, LLMOut - Follow proper bricks-framework JSON structure with widgettype, options, subwidgets - Ensure all examples are production-ready and follow module development specifications
16 lines
305 B
XML
16 lines
305 B
XML
{
|
|
"widgettype": "Button",
|
|
"options": {
|
|
"text": "点击按钮",
|
|
"width": "200px",
|
|
"height": "50px"
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "click",
|
|
"actiontype": "script",
|
|
"script": "alert('按钮被点击了!'); console.log('Button clicked');"
|
|
}
|
|
]
|
|
} |