Click to Upload a file
or drag and drop
PNG, JPG, GIF or up to 100MB
{
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
console.log(data);
this.fileUrl = data.fileUrl;
uploadStatus = 'Upload success';
})
.catch(error => {
console.error('Error:', error);
uploadStatus = 'Upload failed';
});"
>