赞
踩
基于vue element 实现的表格内图片预览功能
代码如下
<el-table-column label="图片" prop="clockpic">
<template slot-scope="scope">
<el-popover placement="right" title trigger="hover">
<img :src="scope.row.clockpic" />
<img
slot="reference"
:src="scope.row.clockpic"
:alt="scope.row.clockpic"
style="max-height: 50px;max-width: 130px"
/>
</el-popover>
</template>
</el-table-column>
来源https://blog.csdn.net/TauCrus/article/details/88245928
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。