elementUI el-upload上传文件 关闭文件列表

问题描述

elementUI 在上传文件的时候,默认会在 el-upload 标签的下方会显示选中的文件。有时候我们并不需要这种需求,想将他关闭。

解决方案

打开elementUI 官方文档,我们可以找到 show-file-list这个属性,在没有指定值的时候,默认会是true。我们只要将其设置为 false即可。
elementUI el-upload上传文件 关闭文件列表_第1张图片
参考代码

<el-upload :show-file-list="false"> el-upload>

你可能感兴趣的:(elementUI,elementui)