vue表格中动态渲染图片地址

使用scope作用域插槽,然后在img中动态绑定地址,这样就可以实现图片地址的动态渲染

<el-table-column prop="message_img" label="书籍封面" width="100" >
	<template slot-scope="scope">
    	<img :src="scope.row.message_img" >
    </template>
</el-table-column>

猜你喜欢

转载自blog.csdn.net/weixin_45745641/article/details/120703603