我希望我的 v-data-table 的表头是“tab-able”。
因此,我创建了一个插槽并在列上放置了一个 tabindex。
不幸的是,排序不再起作用。
是否有一种聪明的方法可以使列“可选项卡”并保持标题的标准功能?
这是我的代码:
<template v-slot:header="{ props:{ headers} }">
<thead>
<tr>
<th v-for="header in headers" :key="header.value">
<td sortable="true" tabindex="0">{{header.text}}</td>
</th>
</tr>
</thead>
</template>