akkoma-fe/src/components/pinch_zoom/pinch_zoom.js

12 lines
199 B
JavaScript
Raw Normal View History

import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'
export default {
props: {
},
methods: {
setTransform ({ scale, x, y }) {
this.$el.setTransform({ scale, x, y })
}
}
}