# Photo Cropper

This component helps you to create file uploader component faster and easier. Choose photo then adjust the image. The result is Base64 image.

# Usage Example

Datatable

<photo-cropper 
  :options="options" 
  :src.sync="image" 
/>

export default {
  data() {
    return {
      image: null,
      options: {
        width: 350,
        height: 350,
        boundaryHeight: 400,
        circle: false
      }
    }
  }
}