feat(components): [mention] explicit export dropdownVisible (#18460)

* feat(components): [mention] explicit export dropdownVisible

* feat(components): [mention] mention component docs update

* docs: unify format

---------

Co-authored-by: warmthsea <2586244885@qq.com>
This commit is contained in:
Summer 2024-10-09 21:56:08 +08:00 committed by GitHub
parent 7e4682a2ee
commit bd245cabdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -123,10 +123,11 @@ and please go to the original component to view the documentation.
### Exposes
| Name | Description | Type |
| ------- | ----------------------------- | --------------------------------------- |
| input | el-input component instance | ^[object]`Ref<InputInstance \| null>` |
| tooltip | el-tooltip component instance | ^[object]`Ref<TooltipInstance \| null>` |
| Name | Description | Type |
| ------------------------ | ----------------------------- | --------------------------------------- |
| input | el-input component instance | ^[object]`Ref<InputInstance \| null>` |
| tooltip | el-tooltip component instance | ^[object]`Ref<TooltipInstance \| null>` |
| dropdownVisible ^(2.8.5) | tooltip display status | ^[object]`ComputedRef<boolean>` |
## Type Declarations

View File

@ -274,5 +274,6 @@ const syncDropdownVisible = () => {
defineExpose({
input: elInputRef,
tooltip: tooltipRef,
dropdownVisible,
})
</script>