You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// in vue
methods: {pressMove(event){// remove tap eventevent.gesture.off('tap')}// the tap event no longer takes effect after the removal is triggeredtap(){conso.log('tap')}}//--------------------------------------------------------------------------------------// in javascriptletbetterGesture=newBetterGesture(document.getElementById('app'),{pressMove(event){console.log(event.deltaX)}})// removebetterGesture.off('pressMove')
In fact, it is mentioned in the document, and I guess that the document failed to load, causing you to not find this api. Because it is deployed on git-page, sometimes it fails to load due to some problems (network, operator, region), you can try to switch the network or device to see if the document can be loaded.
I couldn't find any hints in the document. It'd be great if you can show me how to do it.
Thanks !
The text was updated successfully, but these errors were encountered: