Im trying to upload an image with vue-filepond in nuxt i setup filepond like this in my contact-form.vue :
<file-pond
name="file"
ref="pond"
class-name="my-pond"
label-idle="Drop files here..."
allow-multiple="true"
instantUpload="true"
chunkUploads="true"
chunkSize= 2500
accepted-file-types="image/jpeg, image/png"
server="http://localhost/upload"
v-bind:files="files"
v-on:init="handleFilePondInit"/>
in the method :
handleFilePondInit: function() {
console.log('FilePond has initialized');
// FilePond instance methods are available on `this.$refs.pond`
},
Filepond is saying upload complete but i got no image in the upload folder i create in my Nuxt folder ... do i need to couple Filepond with Axios ? if someone know the best way i could do this ?
Thank you
question from:https://stackoverflow.com/questions/65831102/where-is-the-images-uploaded-with-filepond-in-nuxt