field-form icon indicating copy to clipboard operation
field-form copied to clipboard

使用control放开自定义组件依赖时TS检测存在问题

Open preflower opened this issue 4 years ago • 1 comments

自定义组件如果参数设置为必传会报 Property 'params' is missing in type '{}' but required in type 相关错误

代码:

<Field
  name='params'
  rules={[{ required: true, message: '请填写}]}
>
  {(control, meta) => {
    return (
      <ICell error={meta.errors.length > 0}>
        <IRange type='time' maxLength={2} {...control} />
      </ICell>
    )
  }}
</Field>

preflower avatar Jan 13 '21 04:01 preflower

我也遇到这个问题

zqcccc avatar Apr 29 '21 03:04 zqcccc