1

我有一个 Buefy 表,它没有b-table-columns并使用:data:columns填充 json 数据点。我需要使用 an@onhover来显示单元格表的其他数据点。

我知道我可以像下面的代码一样使用tooltip-bfor :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)"吗?

4

1 回答 1

0

所以我最终用b-table-column下面的代码重写了表格列,这对我来说是有效的代码:

          <b-table-column field="bidCondition" label="B.Cond" sortable numeric centered width="40">
            <b-tooltip :label="tooltipLable(props.row.bidCondition)" position="is-top">
              <span class="dashed-underline">{{ props.row.bidCondition }}</span>
            </b-tooltip>
          </b-table-column>
于 2019-05-16T18:10:04.530 回答