My html
<a href="/someplace">
<div>
<vuecomp></vuecomp>
<span>Click row for more info</span>
</div>
</a>
Then Vue component as such...
<template>
<div @click.stop="doAction">
</div>
</template>
When doAction is called it ALSO triggers the <a href=""> from it's parent div.
How do I stop it from doing this?
I don't want the parent div to become part of the component, it's just a table view.
I've tried @click.stop and passing doAction(event) with event.stopPropagation();
Any other ideas, seems like a simple thing to have a button on a click row using vuejs?