如何像图中显示出图片信息
以下是解决方案:
<el-table-column prop="coverImage" label="食材图标" width="260">
<!-- 图片的显示 -->
<template slot-scope="scope">
<img :src="scope.row.coverImage" min-width="30" height="30" alt="食材图标"/>
</template>
</el-table-column>