What problem does this feature solve?
重置字段时被重置为[undefined]
What does the proposed API look like?
修改ant-design-vue/components/form/FormItem.tsx中的299行
if (Array.isArray(value)) {
prop.o[prop.k] = [].concat(initialValue.value || []);
} else {
prop.o[prop.k] = initialValue.value;
}
重置相关值