<Upload :show-upload-list="true" :headers="{'token':user}" accept="application/pdf" multiple action="//jsonplaceholder.typicode.com/posts/" :on-success="handleSuccess" :before-upload="handleBeforeUpload"> <Button type="ghost" icon="ios-cloud-upload-outline">文件上传</Button> </Upload> handleBeforeUpload(file) { var reader = new FileReader(); reader.readAsDataURL(file); reader.onloadend = () => { this.upList.push(reader.result); this.$set(this.list, "value", this.upList); console.log(this.list); }; return false; },
错误如下:
扬帆大鱼
相关分类