如何在分组表中访问这些标头的索引?
答案 0 :(得分:1)
我刚发现它,答案就在图片中
{{props.row.vgt_id}}
答案 1 :(得分:0)
您可以使用props.column
获取列名。 props.column
将为您提供完整的列对象,以便您可以从中获取索引。 props.column.field
将为您提供列名 title 。
props.column.originalIndex
props.row
props.index
访问。original row index
访问props.row.originalIndex
。 rows[props.row.originalIndex]
访问原始行对象。props.column
props.formattedRow
例如:
<vue-good-table
:columns="columns"
:rows="rows">
<template slot="table-row" slot-scope="props">
<span v-if="props.column.field == 'age'">
<span style="font-weight: bold; color: blue;">{{props.row.age}}</span>
</span>
<span v-else>
{{props.formattedRow[props.column.field]}}
</span>
</template>
</vue-good-table>