fix: after resetting the search, the parameters still exist (#4577)

This commit is contained in:
Vben
2024-10-06 15:10:44 +08:00
committed by GitHub
parent 9ad4f96e38
commit 324cdd8259
3 changed files with 9 additions and 9 deletions

View File

@@ -143,7 +143,7 @@ const vbenFormOptions = computed(() => {
props.api.reload(formValues);
},
handleReset: async () => {
formApi.resetForm();
await formApi.resetForm();
const formValues = formApi.form.values;
props.api.reload(formValues);
},