#header-mark#
Row 行容器
Row 允许在水平容器中排列多个组件。它拥有类似列表的 API,包含 append 、 extend 、 clear 、 insert 、 pop 、 remove 和 setitem 方法,从而可以交互式地更新和修改布局
底层实现为panel.Row
,参数基本一致,参考文档:https://panel.holoviz.org/reference/layouts/Row.html
基本用法
API
属性
属性名 | 说明 | 类型 | 默认值 |
---|---|---|---|
objects | List of child nodes | list | — |
scroll | Enable scrollbars | bool | False |
Slots
插槽名 | 说明 |
---|---|
default | Custom content |
Controls
src/examples/panel_vuepy/layouts/Row