diff --git a/src/components/Input.tsx b/src/components/Input.tsx index ac3891fe..c3487bab 100644 --- a/src/components/Input.tsx +++ b/src/components/Input.tsx @@ -1,3 +1,8 @@ +/** + * @file 这个 Input 与系统默认的 input 不同的地方在于, + * 中文输入过程中不会触发 onChange 事件。对于 autoComplete + * 功能很有必要。 + */ import React from 'react'; import {autobind} from '../utils/helper'; @@ -60,4 +65,4 @@ class InputInner extends React.Component { export default React.forwardRef((props, ref) => { return ; -}) as React.ReactType>; \ No newline at end of file +}) as React.ReactType>;