天天看点

elementui上传单张图片

elementui上传单张图片
<el-upload
      action="http://www.tp5.com/upload"
      :show-file-list="false"
      :on-success="handleAvatarSuccess"
      :before-upload="beforeAvatarUpload"
    >
      <img v-if="imageUrl" :src="imageUrl" class="avatar" />
      <i v-else class="el-icon-plus avatar-uploader-icon"></i>
    </el-upload>
           
handleAvatarSuccess(res, file) {
      this.imageUrl = URL.createObjectURL(file.raw);
    },
    beforeAvatarUpload(file) {
     return true//返回false阻止上传
    },
           
elementui上传单张图片

上图由以下来控制

show-file-list="false"