在此处输入图像描述使用下面的示例代码,我可以在单击时获得 v-edit-dialog,问题是保存按钮在右侧,而取消按钮在左侧。有什么办法让它相反吗?
<v-edit-dialog
:return-value.sync="item[value]"
@save="save"
@cancel="cancel"
large
> {{item[value]}}
<template v-slot:input>
<v-text-field
v-model="item[value]"
label="Edit"
single-line
></v-text-field>
</template>
</v-edit-dialog>