vue-cropperjs-forward
v2.2.2
Published
A Vue wrapper component for cropperjs, forked from Agontuk/vue-cropperjs
Downloads
1
Maintainers
Readme
vue-cropperjs
Forked from Agontuk/vue-cropperjs for personal usage
A Vue wrapper component for cropperjs.
Demo
Checkout here agontuk.github.io/vue-cropperjs
Installation
npm install --save vue-cropperjs-forward
For Vue 1.0, use
npm install --save [email protected]
You will also need css & style loader for webpack
Usage
import VueCropper from 'vue-cropperjs-forward';
...
<vue-cropper
ref="cropper"
:src="imgSrc"
alt="Source Image"
:cropmove="cropImage"
>
</vue-cropper>
...
this.$refs.cropper.rotate(45);
See the example files & cropperjs documentation
Options
| Name | Type | Required | Description |
| -- | -- | -- | -- |
| src | string
| -- | Image source |
| containerStyle | object
| -- | Styling for the image container |
| imgStyle | object
| -- | Styling for the image
| alt | string
| -- | Alternate text for the image
Crop related options
See cropperjs documentation for all posible options & methods.
Renamed Methods
relativeZoom
fromzoom
initCrop
fromcrop
License
MIT