Suppose I have hidden input file field like this:
<input type="hidden" id="croppedFile">
Then can i save cropped image to this hidden field on submitting the form like this
methods:{
onSubmit(){
document.getElementById('croppedFile').value=cropped image goes here..
...'
}
}