el-table-column prop=“is_show” 三目运算写法
// is_show为0时候 不显示 否者显示 直接再prop写三目运算不行
<el-table-column prop="is_show" label="是否显示" width="80"></el-table-column>
正确写法
<el-table-column label="是否显示" width="80">
<template slot-scope="scope">
<span>{{scope.row.is_show==0?'不显示':'显示'}}</span>
</template>
</el-table-column>