q-uploader issue
-
Hi
I am developing a module by using quasar q-uploader component, so after press the upload button (in red below), it is dispatching the following error.What should I do to fix it?
The code I am using is:
<q-uploader color=“light-green-6” url="" />
Thanks for your help.
-
@Fernando2684 check your import { …} from ‘quasar’ section. maybe you forgot to import QSpinner .
-
hi @Sujan-Dev thanks for reply,
Yes, it was included there -
@Fernando2684 did you add QSpinner in the components: { … } ?
-
@Sujan-Dev Yes I did off course.
-
@Fernando2684 did you found a solution or the issue? I have the same problem. Would be nice to know…
-
@maximilianfixl no man, still having the issue
-
Could you post all relevant code, along with the version of quasar you are using and a small guide to reproducing the issue?
Thanks
-
I had the same problem, to hide the upload button I did:
.q-uploader__header-content > button:nth-of-type(3) { display: none; }
-
@miguel-teixeira In quasar beta.19 (to be released today) there’s the
hide-upload-btn
Boolean prop so you don’t need any CSS for it.