0👍
To prevent click event to propagate to parent row, you should use .stop modifier in child (action buttons):
<v-btn @click.stop="edit">Edit</v-btn>
- [Vuejs]-Is it possible to add HTML elements in which store some data in Vue?
- [Vuejs]-Toggle Other Elements in VueJS
Source:stackexchange.com