Skip to content

Commit

Permalink
fix: 修复setFormData错误
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Oct 20, 2022
1 parent f54f80f commit ad07021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fast-crud/src/components/crud/fs-form-wrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export default {
return formRef.value?.getFormData();
}
function setFormData(form) {
formRef.value = form;
formRef.value?.setFormData(form);
}

const computedButtons = computed(() => {
Expand Down

0 comments on commit ad07021

Please sign in to comment.