赞
踩
tableRowStyle({row,rowIndex}){
if(rowIndex===0){
let json={
'color':'#FFFF54'
}
return json;
}
},
<el-table
:data="tableData"
:header-cell-style="{'text-align':'center','color':'#1890FF'}"
:cell-style="{'text-align':'center'}"
:row-style="tableRowStyle"
style="width: 100%">
<el-table-column prop="date" label="日期" width="180"></el-table-column>
<el-table-column prop="name" label="姓名" width="180"></el-table-column>
<el-table-column prop="address" label="地址"></el-table-column>
</el-table>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。