Vue Element Plus 列表图片预览时,被表格覆盖问题解决方法
目录
Vue Element Plus 列表图片预览时,被表格覆盖问题解决方法
问题
vue element plus 列表表格组件使用图片组件预览时,被表格内容覆盖,无法正常展示,如下图
解决
在 preview-teleported="true"
即可
代码如下
<el-image
style="width: 100px; height: 100px"
:src="formatImgURL(scope.row.img_url)"
:preview-src-list="[formatImgURL(scope.row.img_url)]"
show-progress
preview-teleported="true"
fit="cover"
>
<template #error>
<div class="image-slot">
<el-icon><icon-picture /></el-icon>
</div>
</template>
</el-image>
结果
版权声明
未经授权,禁止转载本文章。
如需转载请保留原文链接并注明出处。即视为默认获得授权。
未保留原文链接未注明出处或删除链接将视为侵权,必追究法律责任!
本文原文链接: https://fiveyoboy.com/articles/vue-element-ui-img-err-1/
备用原文链接: https://blog.fiveyoboy.com/articles/vue-element-ui-img-err-1/