element-ui表格如何自定义模板,比如预览图片

假如有:

tableData:{

   picUrl:'https://www.baidu.com/img/jijian%20pad_13db91458cc0573abbf3055bc9c1d15b.png';

}

那么关键代码如下:

                            <el-table-column
                                    prop="picUrl"
                                    label="图片"
                                    width="200">
                                <template slot-scope="scope">
                                    <img :src="scope.row.picUrl" style="height: 100px;width: 150px">
                                </template>
                            </el-table-column>

猜你喜欢

转载自blog.csdn.net/plm609337931/article/details/86538554