When you wish to navigate by scrolling with the middle mouse button instead of using the scroll wheel, simply middle-click and your cursor will change allowing for easy scrolling on web pages.
Even though I am utilizing style="cursor: pointer"
and @click.middle="middClickEvent()"
on vue elements, clicking the mouse wheel still triggers my middleClickEvent
function but causes the cursor to switch from pointer to scrolling mode similar to how it behaves in Chrome (unsure about other browsers).
Is there a way to prevent this behavior from occurring?