vue table组件显示一个图片

列表展示图片效果,直接把url的属性赋值给:src就可以了。

<el-table-column prop="banner_image" label="轮播图">
                <template slot-scope="scope">
                    <img :src="scope.row.banner_image" alt="轮播图" width="120px" height="60px">
                </template>
            </el-table-column>

原文地址:https://www.cnblogs.com/zxyun/p/13026196.html