首页 |  我的博客 |  查看该博主内容分类 | 

el-upload图片回显

核心内容

给el-upload的file-list列表传递{url: 图片地址}即可。

html

<el-button @click="backShow(imgUrl)">回显</el-button>
<el-upload
	...
	:file-list="uploadImageList"
	...
>
</el-upload>

js

data(){
	return {
		uploadImageList: [],
	}
}

methods: {
	backShow(imgUrl){
		this.uploadImageList.splice(0, 1, {url: imgUrl})
	}
}
posted @ 2023-02-15 14:20  Z哎呀  阅读(628)  评论(0)    收藏  举报