vue3中table组件插槽最新版本的(#default)插槽写法的用法

使用template中的作用域插槽,它的作用是在外部获取组件内的数据 ,这里是为了获取这一行的数据,我们让slot-scope值为scope,那么由scope.row就可以得到数据了。本文以elementui为例,如图所示:

第一种常见需求,做v-if/else条件判断的用法

  <el-table-column property="status" label="状态" width="150">
                    <template #default="scope">
                        <div v-if="scope.row.status === 'OK'" class="status-text"> {{ '正常' }}</div>
                        <div v-else class="status-text" style="background-color:#D53939;">{{ '异常' }}</div>
                    </template>
   </el-table-column>

效果如下:

第二种常见需求,做三元表达式判断的用法

<el-table-column lable="状态" align="center">
   <template #default="scope">
     <span>{{ scope.row["state"] == 1 ? "正常" : "异常" }}</span>
   </template>
</el-table-column>
<el-table-column label="检查结果" align="center" prop="status">
   <template slot-scope="scope">
     <span>{{scope.row.status==0?'正常':(scope.row.status==1?'异常':'待处理')}</span>
   </template> 
</el-table-column>

第三种需求,在表格中插入图片按钮

<el-table-column fixed="right" label="操作" width="120">
                    <template slot-scope="scope">
                        <img src="../../assets/images.jpg" width="18"
                            @click.native.prevent="deleteRow(scope.$index, tableData)" type="text" size="small">
                    </template>
 </el-table-column>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值