diff --git a/examples/docs/en-US/checkbox.md b/examples/docs/en-US/checkbox.md
index 63dab6796..4ccd897e2 100644
--- a/examples/docs/en-US/checkbox.md
+++ b/examples/docs/en-US/checkbox.md
@@ -157,7 +157,7 @@ The `indeterminate` property can help you to achieve a 'check all' effect.
### Minimum / Maximum items checked
-The `minimum` and `maximum` properties can help you to limit the number of checked items.
+The `min` and `max` properties can help you to limit the number of checked items.
:::demo
@@ -165,8 +165,8 @@ The `minimum` and `maximum` properties can help you to limit the number of check
+ :min="1"
+ :max="2">
{{city}}
@@ -199,6 +199,12 @@ The `minimum` and `maximum` properties can help you to limit the number of check
| checked | if the checkbox is checked | boolean | — | false |
| indeterminate | same as `indeterminate` in native checkbox | boolean | — | false |
+### Checkbox-group Attributes
+| Attribute | Description | Type | Options | Default|
+|---------- |-------- |---------- |------------- |-------- |
+| min | minimum number of checkbox checked | number | — | — |
+| max | maximum number of checkbox checked | number | — | — |
+
### Checkbox-group Events
| Event Name | Description | Parameters |
|---------- |-------- |---------- |
diff --git a/examples/docs/zh-CN/checkbox.md b/examples/docs/zh-CN/checkbox.md
index 11953634d..6c1c1480e 100644
--- a/examples/docs/zh-CN/checkbox.md
+++ b/examples/docs/zh-CN/checkbox.md
@@ -166,7 +166,7 @@
### Minimum / Maximum items checked (to be translated)
-The `minimum` and `maximum` properties can help you to limit the number of checked items.
+The `min` and `max` properties can help you to limit the number of checked items.
:::demo
@@ -174,8 +174,8 @@ The `minimum` and `maximum` properties can help you to limit the number of check
+ :min="1"
+ :max="2">
{{city}}
@@ -207,6 +207,13 @@ The `minimum` and `maximum` properties can help you to limit the number of check
| checked | 当前是否勾选 | boolean | — | false |
| indeterminate | 设置 indeterminate 状态,只负责样式控制 | boolean | — | false |
+### Checkbox-group Attributes (to be translated)
+| Attribute | Description | Type | Options | Default|
+|---------- |-------- |---------- |------------- |-------- |
+| min | minimum number of checkbox checked | number | — | — |
+| max | maximum number of checkbox checked | number | — | — |
+
+
### Checkbox-group Events
| 事件名称 | 说明 | 回调参数 |
|---------- |-------- |---------- |