This commit is contained in:
taiyong 2017-03-14 18:03:05 +08:00
parent 7d5b336fac
commit c1e1abd158

View File

@ -38,6 +38,7 @@
if (this.beforeRead && ! this.beforeRead(file)) return;
var reader = new FileReader();
reader.onload = (e) => {
this.$emit('file-readed',
{
@ -48,11 +49,13 @@
});
this.$refs.input.value = '';
};
if (this.resultType == 'dataUrl') {
reader.readAsDataURL(file);
} else if (this.resultType == 'text') {
reader.readAsText(file);
}
}
}
};