vue-image-crop-upload icon indicating copy to clipboard operation
vue-image-crop-upload copied to clipboard

A beautiful vue component for image cropping and uploading. (vue图片剪裁上传组件)

Results 106 vue-image-crop-upload issues
Sort by recently updated
recently updated
newest added
trafficstars

Is there any way to limit the accepted file formats? Right now it is accepting pngs even if the imgFormat is set only to jpg, and viceversa.

Is it possible to show the max size warning to MB. As, I have added :maxSize="2040" and warning currently showing Image size cannot be greater than:2040kb but I would like...

Using this component ``` ``` The image in the preview box does not zoom in when uploading an image at the minimum width and height. E.g 1100 x 619

Could you please write an example how to save image with laravel framework? I fixed the laravel route route('/avatar/upload') with post method but and gave the url /avatar/upload but it...

Hey I could not find how to close the pop-up when clicking on the cross. I had to find the event `@update:modelValue` in the source code, may be there was...

hi, is there any update for support mobile view? its good in desktop but not good for mobile

1. 阿里云OSS上传成功后缺省返回204,程序只处理了200/201/202 2. 通过设置阿里云OSS上传请求参数 'success_action_status' : '200' 可以让OSS返回200,但此时responseText='',JSON.parse('') 报 ’Uncaught SyntaxError: Unexpected end of JSON input‘ 导致不能正确返回

比如上传成功后自动关闭,在@crop-upload-success中设置v-model为false关闭 此时再设置v-model为true打开不会出现drop-area,因为step没有正确置为1 修改watch value函数,在this.reset()后设置this.step=1解决