I'm trying to emit a FormData object in from child component to parent Component. Here is some code what I'm trying:
Child Component
onAddFile(error, file) {
const formData = new FormData();
formData.append(this.fileName, file.file);
console.log(...formData); // here it show the output
this.$emit("input", formData); // not working here
}
I am trying to store the emitted data in a object in parent component. but it just stores a String. In the case of console.log it shows following.

How to solve it ?
$emit("input")function in parent page??