pinch_zoom.js 250 B

12345678910111213
  1. import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'
  2. export default {
  3. methods: {
  4. setTransform ({ scale, x, y }) {
  5. this.$el.setTransform({ scale, x, y })
  6. }
  7. },
  8. created () {
  9. // Make lint happy
  10. (() => PinchZoom)()
  11. }
  12. }