vue+element-ui 如何根据获取的prop的值显示不同的标签

当我们获取后台的数据,后台返回的数据为0和1,我们想要的效果是,后台返回1显示,后台返回0显示X,如何根据prop的值来判断 ,在element-UI中怎么判断,将prop去掉在下面加上<template slot-scope="scope"></template>里面再写vue的判断

<el-table-column label="是否显示" >
 <template slot-scope="scope">
                <i v-if="scope.row.is_show===0" class="el-icon-close"></i>
                <i v-else class="el-icon-check"></i>
            </template>
</el-table-column>

猜你喜欢

转载自blog.csdn.net/weixin_43674113/article/details/84061939