element-ui如何在table中发图片

element-ui以以下这种方式来绑定数据,生成表单
image.png
image.png
image.png
产品经理给的任务里有个是在table中展示表单
image.png
我尝试在tableData数组的对象内以字符串形式引入图片,但是没有生效,应该如何实现绑定?
image.png
image.png
image.png

阅读 3.1k
2 个回答

ele的table组件支持自定义table内容

<el-table-column label="封面">
     <template slot-scope="scope">
         <img :src="scope.row.cover" alt="">
    </template>
</el-table-column>
<el-table-column prop="image" label="图片">
                <template slot-scope="scope">
                    <el-image
                    prop="image" 
                    style="width: 100px; height: 100px"
                    :src="scope.row.image" 
                   >
                </el-image>
                </template>
                
            </el-table-column>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题