I'm trying to convert semantic-ui component to rely on vuejs instead of jQuery, but I don't know how to isolate v-on:click between child and it's parent element.
In this example below, I'm using v-on:click with a button which will show dropdown menu using a toggle function and there's another v-on:click assigned to delete icon, which will trigger another function.
The problem is, while I'm clicking on the delete icon, the dropdown menu will show-up.
How can I prevent this from happening?
`https://jsbin.com/minezij`