码迷,mamicode.com
首页 > 其他好文 > 详细

vue+elementui进阶之路-el-table中显示图片

时间:2019-06-17 10:50:21      阅读:603      评论:0      收藏:0      [点我收藏+]

标签:template   width   rop   进阶之路   color   style   column   element   src   

1、table中显示图片

2、当需要遍历图片时,不能直接使用prop绑定值

3、一张图片

<el-table-column label="头像">
  <template slot-scope="scope">
    <img :src="scope.row.img" width="40" height="40" class="head_pic"/>
  </template>
</el-table-column>

4、多张图片

<el-table-column prop="pictures" label="描述图片">
  <template scope="scope">
    <img v-for="item in scope.row.pictures" :src="item" width="40" height="40" class="head_pic"/>
  </template>
</el-table-column>

vue+elementui进阶之路-el-table中显示图片

标签:template   width   rop   进阶之路   color   style   column   element   src   

原文地址:https://www.cnblogs.com/congfeicong/p/11038119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!