diff --git a/docs/en-US/component/select-v2.md b/docs/en-US/component/select-v2.md
index 0590db36ad..32a9c4bae3 100644
--- a/docs/en-US/component/select-v2.md
+++ b/docs/en-US/component/select-v2.md
@@ -39,6 +39,8 @@ select-v2/multiple
## Hide extra tags when the selected items are too many.
+You can collapse tags to a text by using `collapse-tags` attribute. You can check them when mouse hover collapse text by using `collapse-tags-tooltip` attribute.
+
:::demo
select-v2/hide-extra-tags
@@ -135,6 +137,7 @@ select-v2/remote-search
| clearable | whether select can be cleared | boolean | — | false |
| clear-icon | custom clear icon | string / component | — | CircleClose |
| collapse-tags | whether to collapse tags to a text when multiple selecting | boolean | — | false |
+| collapse-tags-tooltip | whether show all selected tags when mouse hover text of collapse-tags. To use this, `collapse-tags` must be true | boolean | true / false | false |
| multiple-limit | maximum number of options user can select when multiple is true. No limit when set to 0 | number | — | 0 |
| name | the name attribute of select input | string | — | — |
| effect | Tooltip theme, built-in theme: `dark` / `light` | string | string | light |
diff --git a/docs/examples/select-v2/hide-extra-tags.vue b/docs/examples/select-v2/hide-extra-tags.vue
index 3b5450de1d..3a468287d5 100644
--- a/docs/examples/select-v2/hide-extra-tags.vue
+++ b/docs/examples/select-v2/hide-extra-tags.vue
@@ -1,12 +1,27 @@
-
+