mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-17 00:43:02 +01:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'
|
|
|
|
export default {
|
|
methods: {
|
|
setTransform ({ scale, x, y }) {
|
|
this.$el.setTransform({ scale, x, y })
|
|
}
|
|
},
|
|
created () {
|
|
// Make lint happy
|
|
(() => PinchZoom)()
|
|
}
|
|
}
|