I am trying to implement vue-panzoom's manual zoom option. panzoom is the parent library and the
default zoom which is well demoed here is what i am trying to acheive https://timmywil.com/panzoom/demo/#Panning%20and%20zooming
As per the original library (panzoom), there are zoom,zoomIn and zoomOut functions,
but the instance does not have those methods
the only way i could find till now is using smooth zoom function,and i am not sure how to use it
this.$refs.panZoom.$panZoomInstance.smoothZoom(2.2);
This what i have tried till now
https://codesandbox.io/s/poc-zoompan-dz70x?file=/src/App.vue:737-793 Please take a look at it,any suggestions would be helpful.