2021-08-02 17:42:10 -04:00
|
|
|
import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'
|
|
|
|
|
|
|
|
|
|
export default {
|
2021-08-02 19:11:59 -04:00
|
|
|
methods: {
|
|
|
|
|
setTransform ({ scale, x, y }) {
|
|
|
|
|
this.$el.setTransform({ scale, x, y })
|
|
|
|
|
}
|
2021-08-02 19:44:01 -04:00
|
|
|
},
|
|
|
|
|
created () {
|
|
|
|
|
// Make lint happy
|
|
|
|
|
(() => PinchZoom)()
|
2021-08-02 17:42:10 -04:00
|
|
|
}
|
|
|
|
|
}
|