[Vuejs]-The below given code is not working for me. And giving an error "vueuploadComponent.html:396 Uncaught ReferenceError: FileUpload is not defined"

0👍

Assuming you’re using Lian Yue’s vue-upload-component and have installed it successfully, try removing the curly braces from your import:

import FileUpload from "vue-upload-component";

This will set FileUpload to the default export from vue-upload-component which I believe is what you want

Leave a comment