vue-good-table 行上是否有右键单击事件以显示上下文菜单?
Is there a right click event on vue-good-table rows to show a context menu?
根据我在 vue-good-table documentationn
中看到的情况,不存在 right-click
事件,只有单击、双击、鼠标输入..
我需要在 right-click
上为每一行打开一个 上下文菜单 。
有人对如何解决问题有什么建议吗?
您可以使用 Custom row template
并添加 @contextmenu
事件,如下所示:
<vue-good-table :columns="columns" :rows="rows">
<template slot="table-row" slot-scope="props">
<div @contextmenu.prevent="openMenu($event,props.row)" >
{{props.formattedRow[props.column.field]}}
</div>
</template>
</vue-good-table>
如需更多说明,请查看此 code
根据我在 vue-good-table documentationn
中看到的情况,不存在 right-click
事件,只有单击、双击、鼠标输入..
我需要在 right-click
上为每一行打开一个 上下文菜单 。
有人对如何解决问题有什么建议吗?
您可以使用 Custom row template
并添加 @contextmenu
事件,如下所示:
<vue-good-table :columns="columns" :rows="rows">
<template slot="table-row" slot-scope="props">
<div @contextmenu.prevent="openMenu($event,props.row)" >
{{props.formattedRow[props.column.field]}}
</div>
</template>
</vue-good-table>
如需更多说明,请查看此 code