I’m trying to make Quasar table with button on every row, that open fit QMenu:
It works but I need to open QMenu only by button click.
<template v-slot:body-cell-name="props" >
<q-td :props="props">
<q-btn icon="menu" @click="" dense flat></q-btn>
</q-td>
<q-menu fit>
Blah Blah Blah<br>
Blah Blah Blah<br>
Blah Blah Blah
</q-menu>
</template>
Here’s my code – https://codepen.io/TwentySix26/pen/BaejQGP
If QMenu placed inside a button it’s opening without fit to current table row.