formRef.value.validateFields is not a function

这个表单验证,搞了两天了,用的是vue3+ Ant Design Vue

我没看错的话,ant design官网的接口示例是validate

 formRef.value.validate().then(() => {
    console.log('values', formState, toRaw(formState));
  }).catch(error => {
    console.log('error', error);
  });