Type alias FormItemHelperProps

FormItemHelperProps: {
    position?: string;
    render?: ((scope: any) => any);
    text?: string;
    tooltip?: object;
    [key: string]: any;
}

表单字段帮助说明配置

Type declaration

  • [key: string]: any
  • Optional position?: string

    帮助说明所在的位置,[ undefined | label]

  • Optional render?: ((scope: any) => any)
      • (scope: any): any
      • 自定义渲染帮助说明

        Parameters

        • scope: any

        Returns any

  • Optional text?: string

    帮助文本

  • Optional tooltip?: object

    [a|el|n]-tooltip配置

Generated using TypeDoc