DEV Community

Mayank Kumar Chaudhari
Mayank Kumar Chaudhari

Posted on

Answer: Prevent event bubbling in Vue

I was creating a navigation bar and had similar requirements. I wanted the popup menu to be closed when clicked anywhere except on the menu or its children.

This can be done by using event modifiers. Fore reference see this docs

Specifically, we can use stop event modifier.

<div id="largeArea"

Top comments (0)