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

14 lines
249 B
JavaScript
Raw Normal View History

2023-01-02 15:16:42 +00:00
import PinchZoom from '@floatingghost/pinch-zoom-element'
export default {
methods: {
2022-12-08 16:48:17 +00:00
setTransform({ scale, x, y }) {
this.$el.setTransform({ scale, x, y })
}
2021-08-02 23:44:01 +00:00
},
2022-12-08 16:48:17 +00:00
created() {
2021-08-02 23:44:01 +00:00
// Make lint happy
2022-12-08 16:48:17 +00:00
;(() => PinchZoom)()
}
}