Agontuk / vue-cropperjs

A Vue wrapper component for cropperjs https://github.com/fengyuanchen/cropperjs
MIT License
932 stars 225 forks source link

How can I set an Options for minimum crop width and height ? #134

Open partha-uiu opened 2 months ago

partha-uiu commented 2 months ago

I am using Nuxt js. Now I want to set the default minimum crop height and width for the vue-cropper, how can I achieve it? https://github.com/fengyuanchen/cropperjs#options

                            <VueCropper 
                                    v-show="selectedFile" 
                                    ref="cropper" 
                                    :src="selectedFile" 
                                    @minCropBoxWidth="50"
                                    @ready="setCropBoxData"
                                    alt="Source Image">
                             </VueCropper>

Here option @minCropBoxWidth="50" is not working and @ready too . @Agontuk