Merge pull request #591 from franksun1988/patch-input

删除max-length属性
diff --git a/docs/docs/components/input.md b/docs/docs/components/input.md
index 2dad165..eb1f4d9 100644
--- a/docs/docs/components/input.md
+++ b/docs/docs/components/input.md
@@ -24,8 +24,6 @@
 
 * `lines`: makes the input exactly this many lines tall.
 
-* `max-length`: constrain edits not to make the length of the text greater than the specified length.
-
 * `max` constrain the max date when `type` is `date`, format is `yyyy-MM-dd`
 
 * `min` constrain the min date when `type` is `date`, format is `yyyy-MM-dd`
diff --git a/docs/zh/docs/components/input.md b/docs/zh/docs/components/input.md
index a91b88f..3f9a895 100644
--- a/docs/zh/docs/components/input.md
+++ b/docs/zh/docs/components/input.md
@@ -32,7 +32,6 @@
 | `maxlength` | nubmer  | 一个数值类型的值,表示输入的最大长度                                                                              |        |                                                                                                                                                                                                                                            |
 | `return-key-type` | string  | 键盘返回键的类型(即手机输入法右下角回车按钮的地方)<br /><img src="https://img.alicdn.com/tfs/TB1GSs7n9zqK1RjSZFLXXcn2XXa-311-156.png" height="100px" width="200px" /> |        | 支持 defalut;go;next;search;send,done <br /> [查看示例](http://dotwe.org/vue/2ab797dc2ffe865f33a5727d0fdd2408)                                                                                                                             |  |
 | `singleline` | boolean | 控制内容是否只允许单行                                                                                            | true   |                                                                                                                                                                                                                                            |
-| `max-length`                                                                | number  | 控制输入内容的最大长度                                                                                            |        | 字符串长度,即中英文字符长度都为 1                                                                                                                                                                                                         |
 | `max`                                                                       | string  | 控制当 type 属性为 date 时选择日期的最大时间,格式为 yyyy-MM-dd                                                   |        |                                                                                                                                                                                                                                            |
 | `min`                                                                       | string  | 控制当 type 属性为 date 时选择日期的最小时间,格式为 yyyy-MM-dd                                                   |        |                                                                                                                                                                                                                                            |
 | `upriseOffset` <Badge text="v0.21+ & iOS" type="warn" vertical="middle"/> | number  | 当键盘弹起可能盖住输入框时,页面整体会上移。这个属性指定键盘上边缘与输入框下边缘的间隙。使用 iOS 系统坐标,默认是 20。 |    20    |                                                                                                                                                                                                                                            |