vue-zoomer
Version:
Zoom the image or other thing with mouse or touch
13 lines (11 loc) • 310 B
JavaScript
import VueZoomer from './vue-zoomer.vue'
import VueZoomerGallery from './vue-zoomer-gallery.vue'
export default {
install (Vue) {
Vue.component('VZoomer', VueZoomer)
Vue.component('VZoomerGallery', VueZoomerGallery)
},
// for locally register
Zoomer: VueZoomer,
Gallery: VueZoomerGallery,
}