• This repository has been archived on 17/Oct/2021
  • Stars
    star
    274
  • Rank 144,733 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 8 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

↔️ Crop directive for Vue.js

VueCrop

Crop events plugin for Vue.js 1.0

This is a directive for Jcrop 2.0.0.

See a live demo here.

Usage

Install via npm

Available through npm as vue-crop.

npm install --save vue-crop

Direct include

You can include it with a <script> tag when you have Vue itself included globally. It will automatically install itself, and will add a global VueCrop.

Use in templates

Then you can do this:

<img src="pic.jpg" width="600" height="400" v-crop:start="cropStart"/>

You should specify both the height and width attributes

See Jcrop documentation for all available events.

Set options

VueCrop.setOptions({
  setSelect: [10, 10, 100, 100],
  aspectRatio: 1,
  bgColor: 'red'
})

See Jcrop documentation for all available options.

License

VueCrop is released under the MIT Licence. See the bundled LICENSE file for details.