從數(shù)據(jù)庫中拿到數(shù)據(jù)躺坟,
如拿到0,1恐锦。
想變成男哩掺,女放入表單中
html文件
<el-table
ref="multipleTable"
:data="bsBuses"
tooltip-effect="dark"
style="width: 100%">
<el-table-column
prop="sex"
label="性別"
:formatter="formatSex">
</el-table-column>
</el-table>
Vue文件
methods:{
formatSex: function (row, column, cellValue) {
if (cellValue === "1"){
return '女';
}else if (cellValue === "0"){
return '男';
}
}
}