如何在 Vuetify 中使用 Dialog 连接表记录
Posted
技术标签:
【中文标题】如何在 Vuetify 中使用 Dialog 连接表记录【英文标题】:How to connect table records with Dialog in Vuetify 【发布时间】:2019-01-03 03:49:19 【问题描述】:如何在 Vuetify 的对话框中从表中获取动态数据。我有数据表
<td class="text-xs-left"> props.item.id </td>
<td class="text-xs-left"> props.item.title </td>
<td class="text-xs-left"> props.item.quantity </td>
<td class="text-xs-left"> <Dialog :to="'/products/' + props.item.id"></Dialog></td>
我有组件 Dialog.Vue。 如何连接点击打开对话框中的特定记录?
【问题讨论】:
【参考方案1】:对话框应该放在桌子外面。在表格中,您应该有触发对话框的按钮。以@click="dialog_visible = true" 为例,如果您需要动态对话框,您可以在@click 方法中设置对话框参数。
【讨论】:
以上是关于如何在 Vuetify 中使用 Dialog 连接表记录的主要内容,如果未能解决你的问题,请参考以下文章
在 vuetify 中为 v-dialog 激活器使用自定义事件