aboutsummaryrefslogtreecommitdiff
path: root/src/components/pinch_zoom/pinch_zoom.js
blob: 36bebbce5b1fc4222b4755b3953470548be4a9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'

export default {
  props: {
  },
  methods: {
    setTransform ({ scale, x, y }) {
      this.$el.setTransform({ scale, x, y })
    }
  }
}