el-upload 手动上传前校验文件列表长度

this.$refs.upload.uploadFiles
// 提交上传文件
        submitFileForm() {
          if(this.$refs.upload.uploadFiles.length <= 0){
            this.$message.error("请选择文件");
          }
          this.$refs.upload.submit();
        },
原文地址:https://www.cnblogs.com/duanzhenzhen/p/15331545.html