elementui 表格組件如何展示圖片
elementui 表格組件如何展示圖片
白豬掌柜的
2018-12-21 19:19:08
TA貢獻1803條經驗 獲得超6個贊
這里的src要寫成:src
<el-table-column label="img" >
<template scope="scope">
<image :src="scope.row.image" width="80" height="80"/>
</template>
</el-table-column>
舉報