<v-dialog v-if="currentSelection != null" persisten t max-width="500px">
<v-btn slot="activator" @click.native.stop="true" color="primary" dark>Accept
<v-icon dark right>check_circle</v-icon>
</v-btn>
....
</v-dialog>
单击数据表行时,我试图弹出v对话框。如何将上述dialog标签的激活器设置为数据表行?现在,它仅在我单击v对话标签之间的“接受”按钮时弹出。感谢您的关注。我现在是前端的新手。
<v-data-table
:headers="headers"
:items="xxx"
:pagination.sync="dataTableOptions.pagination"
:total-items="dataTableOptions.totalItems"
:loading="dataTableOptions.loading"
class="elevation-1">
<template slot="items" slot-scope="props">
<tr @click="changeSelectedVariable(props.item)">
<td>{{ props.item.group.description }}</td>
<td>{{ props.item.key }}</td>
<td>{{ props.item.value }}</td>
</tr>
</template>
</v-data-table>
答案 0 :(得分:0)
您可以将value
传递到对话框以使其处于活动状态:
<v-dialog :value="!!currentSelection" persistent max-width="500px">
</v-dialog>
我想您在currentSelection
函数中更改了changeSelectedVariable
的值