Element-Plus el-table表格组件按行内内容自动添加图片
Posted UDK_KL.
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Element-Plus el-table表格组件按行内内容自动添加图片相关的知识,希望对你有一定的参考价值。
图片URL写在了表格变量中
scop.row获取当前行的数据
<el-table>
<el-table-column label="" prop="">
<template #default="scope">
<el-image style="width: 70px; height: 70px" :src="scope.row.site" alt="" :fit="fill" ></el-image>
</template>
</el-table-column>
</el-table>
以上是关于Element-Plus el-table表格组件按行内内容自动添加图片的主要内容,如果未能解决你的问题,请参考以下文章
Element-Plus el-table表格组件按行内内容自动添加图片
Element-Plus el-table表格组件按行内内容自动添加图片