<el-image
style="width: 100px; height: 100px"
:src="url"
@click="getSrcList(scope.row)"
:preview-src-list="srcList">
</el-image>
getSrcList(row){
console.log(row.id)
this.$nextTick(()=>{
this.srcList=[
'https://fuss10.elemecdn.com/8/27/f01c15bb73e1ef3793e64e6b7bbccjpeg.jpeg',
'https://fuss10.elemecdn.com/1/8e/aeffeb4de74e2fde4bd74fc7b4486jpeg.jpeg'
]
})
}
elementui的Image组件的大图预览功能,第一次点击图片的时候并没有出现大图,可能是渲染不及时的问题?