问题:vue3中el-table中点击图片放大时,被表格覆盖。
解决方法:el-image 添加preview-teleported
html
<el-table-column label="封面图" prop="coverUrl">
<template #default="scope">
<el-image
style="width: 100px; height: 100px"
:src="scope.row.coverUrl"
:preview-src-list="[scope.row.coverUrl]"
preview-teleported
>
</el-image>
</template>
</el-table-column>