'VueJS / JavaScript - own touch gestures - disable Edge touch gestures

for a new hmi project in my company, I am using a plugin for touch gestures for a VueJS project.

The problem is: some of mine gestures are overlapping with the browser default touch gestures of the microsoft edge browser, which are used in kiosk mode.

Is it possible to deactivate the edge touch gestures and only use my defined touch gestures?

Thanks in advance Matthias



Solution 1:[1]

Have you ever tried this way?

@touchstart.native.stop
@touchmove.native.stop
@touchend.native.stop

.... and all touch if you want to stop
hope i could help

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mysterdev