1.设置高亮行
el-table标签加上highlight-current-row
2.默认选中一行高亮
el-table标签加上 ref=‘table’
在请求到数据后 this.$nextTick(()=>{
this.<美元符号>refs.table.setCurrentRow(res.data[0])
})
3.获取高亮行的数据
目前我是通过在el-table里面加入属性
@current-change=‘change’
change函数默认第一个参数,其值就是高亮行的数据,用一条数据记录此值即可。