diff --git a/docs/en-US/component/dropdown.md b/docs/en-US/component/dropdown.md
index 9a39eb5e46..70ae905cf8 100644
--- a/docs/en-US/component/dropdown.md
+++ b/docs/en-US/component/dropdown.md
@@ -95,6 +95,16 @@ dropdown/command-event
:::
+## Dropdown methods
+
+You can open or close the dropdown menu by manually use `handleOpen` or `handleClose`
+
+:::demo
+
+dropdown/dropdown-methods
+
+:::
+
## Sizes
Besides default size, Dropdown component provides three additional sizes for you to choose among different scenarios.
@@ -138,6 +148,13 @@ dropdown/sizes
| command | triggers when a dropdown item is clicked | the command dispatched from the dropdown item |
| visible-change | triggers when the dropdown appears/disappears | true when it appears, and false otherwise |
+## Dropdown Methods
+
+| Method | Description | Parameters |
+| ----------- | ----------------------- | ---------- |
+| handleOpen | open the dropdown menu | — |
+| handleClose | close the dropdown menu | — |
+
## Dropdown-Menu Slots
| Name | Description | Subtags |
diff --git a/docs/examples/dropdown/dropdown-methods.vue b/docs/examples/dropdown/dropdown-methods.vue
new file mode 100644
index 0000000000..a284364484
--- /dev/null
+++ b/docs/examples/dropdown/dropdown-methods.vue
@@ -0,0 +1,48 @@
+
+
+
open(close) the Dropdown list2 will close(open) the Dropdown List1.