From bbb4d757c1de9a9bd34df0baa4bb2e9cd895b5d3 Mon Sep 17 00:00:00 2001 From: 0song <82012629+0song@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:00:59 +0800 Subject: [PATCH] chore: update doc (#22511) --- docs/en-US/component/input.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en-US/component/input.md b/docs/en-US/component/input.md index bc966d88dd..5e7fb64ee8 100644 --- a/docs/en-US/component/input.md +++ b/docs/en-US/component/input.md @@ -108,6 +108,7 @@ input/various-size ## Limit length :::demo `maxlength` and `minlength` attributes of input, they declare a limit on the number of characters a user can input. The "number of characters" is measured using JavaScript string length.Setting the `maxlength` prop for a text or textarea type of Input can limit the length of input value, allows you to show word count by setting `show-word-limit` to `true` at the same time. In ^(2.11.5), You can set `word-limit-position` to `outside` to display the word count outside the input. + input/length-limiting :::