Vue Common - Object Structures - EventObject - Methods
Methods that control the event.
isDefaultPrevented()
Checks if the preventDefault() method was called on this event object.
true if preventDefault() was called, false otherwise.
isImmediatePropagationStopped()
Checks if the stopImmediatePropagation() method was called on this event object.
true if stopImmediatePropagation() was called, false otherwise.
isPropagationStopped()
Checks if the stopPropagation() method was called on this event object.
true if stopPropagation() was called, false otherwise.
stopImmediatePropagation()
Stops the event's propagation up the DOM tree, preventing the rest of the handlers from being executed.