代码
单个图片
<el-table :data="data" style="width: 100%">
<el-table-column prop="cover" width="180">
<template slot-scope="scope">
<img :src="scope.row.cover" width="100" height="100" class="cover" />
</template>
</el-table-column>
</el-table>
scope和scope.row是vue的,cover是 table中传入的data里面的属性
传入数据格式