vue table状态自定义文字
2021-08-12 本文已影响0人
上海_前端_求内推
<el-table-column prop="IsValid" label="是否有效" width="80px">
<template slot-scope="scope">
<span v-if="scope.row.IsValid==0" >是</span>
<span v-else-if="scope.row.IsValid==1" >否</span>
</template>
</el-table-column>