mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
22 lines
336 B
TypeScript
22 lines
336 B
TypeScript
import Vue from 'vue';
|
|
import VueCropperJs from 'vue-cropperjs';
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
data: {
|
|
imgSrc: '',
|
|
},
|
|
components: {
|
|
'vue-cropperjs': VueCropperJs
|
|
},
|
|
methods: {
|
|
zoom(option: any) {
|
|
},
|
|
},
|
|
template: `
|
|
<vue-cropperjs :value="value"
|
|
:imgSrc="imgSrc">
|
|
</vue-cropperjs>
|
|
`
|
|
});
|