
在form表單中有圖片顯示的需求,利用scope屬性實現
<el-table-column prop="shopImage" label="供應商封面" width="120">
<template slot-scope="scope">
<el-image style="width: 100px; height: 100px" :src="scope.row.shopImage" fit="cover"></el-image>
</template>
</el-table-column>
