vue-long-click
vue-long-click copied to clipboard
Click event should be suppressed once longclick has fired
If I have an element with both a @click
handler and a v-longclick
directive, I would expect that once the longclick event has fired, my click handler won't be called on mouseup – but it is.
At least, I think this should be offered as a configuration option.
@baffalop Have you figured a way to bypass it?
deal breaker- any fixes?
As far as I remember, I ended up having to track whether the long click had fired and suppress the click handler manually. Which is almost no better than manually implementing long click...