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

a vue plugin for image to crop and upload

Results 102 vue-core-image-upload issues
Sort by recently updated
recently updated
newest added

当图片巨大,耗时太长时,可以设置超时,取消上传吗

Syntax error in crop.vue line 4: @:mousedown="drag", which should be @mousedown.

上传组件在微信端使用部分机型出现除图库外其他所有目录图片均为灰色无法选择状态,经作者解答是因为图片的mime_type有限制,解决方法只需要在调用组件的页面的mounted生命周期动态修改掉accept属性即可 代码如下: `mounted () { let fileInput = document.querySelector('input[type="file"]') fileInput.setAttribute('accept', 'image/*') // console.log(fileInput) }`

项目里需要用到,为了避免问题问一下,谢谢。 似乎只在文档里看到了保留所有权利?

When component loads I receive this error in web browser console: resize.js:1 Uncaught TypeError: Cannot read property 'offsetWidth' of null at Object.23 (resize.js:1) at t (resize.js:1) at 0 (resize.js:1) at...

Msg: daycaca.rotate2 is not a function. Which means rotate2 is not exists, resolve this problem by modify daycaca.rotate2 => daycaca.rotate in crop.vue on line 137

Recommend that before call tryAjaxUpload(callback, isBinary, base64Code) function add some condition to parse base64Code to Blob. for instance: dataURLtoBlob (dataurl) { var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1], bstr =...