2022年2月27日

Ant Design Mobile自定义表单字段

摘要: Ant Design Mobile 5.0 自定义或第三方的表单控件,也可以与 Form 组件一起使用。只要该组件遵循以下的约定: 提供受控属性 value 值同名的属性。 提供 onChange 事件。 import React, { useState, FC } from 'react' imp 阅读全文

posted @ 2022-02-27 23:36 漫思 阅读(623) 评论(0) 推荐(0)

antd form表单自定义验证

摘要: antd 4 import React, { useState } from 'react'; import { Form, Input, Select, Button } from 'antd'; const { Option } = Select; type Currency = 'rmb' | 阅读全文

posted @ 2022-02-27 23:14 漫思 阅读(1271) 评论(0) 推荐(0)

代码简洁大师

摘要: onchange?.(123) 等价于 if (onchange) onchange(123); 阅读全文

posted @ 2022-02-27 22:20 漫思 阅读(32) 评论(0) 推荐(0)

导航