thecodealer / vue-panzoom

Vue plugin to zoom/pan dom elements
MIT License
89 stars 20 forks source link

Use locally in component #25

Closed bagaskarala closed 3 years ago

bagaskarala commented 3 years ago

how to use without Vue.use(), i mean i want to use locally inside compnent

thecodealer commented 3 years ago

how to use without Vue.use(), i mean i want to use locally inside compnent

You can just import and use it like so:

import panZoom from 'panzoom';
import VuePanZoom from 'vue-panzoom/src/components/pan-zoom/component.vue';

Vue.prototype.$panZoom = panZoom; //this is very important
Vue.component('VuePanZoom', VuePanZoom);