我有一个 Buefy 表,它没有b-table-columns
并使用:data
和:columns
填充 json 数据点。我需要使用 an@onhover
来显示单元格表的其他数据点。
我知道我可以像下面的代码一样使用tooltip-b
for :b-table-column
<b-table-column field="id" label="ID" width="40" sortable numeric>
<b-tooltip label="Some additional info about the status" position="is-right">
<span class="tag is-success is-status is-small">{{ props.row.id }}</span>
</b-tooltip>
</b-table-column>
但我正在寻找一些不必使用的东西b-table-column
,因为我必须用b-table-columns
.
我注意到一个元属性可以包含 buefy 表列中的任何内容。
我应该使用类似的东西:meta="function(cellIndex)"
吗?