ant-design-blazor/components/mentions/MentionsOption.razor
Henry.zhang ef22dd5a1b feat: add mentions component (#286)
* feat: add mentions component

* fix: update with z-index

* feat: new mention components (unfinished)

* fix: show chinese letter for affix and tree

* refactor: clean code

* fix: the display position of the dropdown is consistent with the cursor

* fix: mistakes

Co-authored-by: ElderJames <shunjiey@hotmail.com>
Co-authored-by: zxyao <zxyao145@gmail.com>
2020-07-11 01:46:35 +08:00

15 lines
340 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
<li class="@ClassMapper.Class" @ref="@Ref"
@onmouseenter="OnMouseEnter"
@onmouseleave="OnMouseLeave"
@onclick="OnClick"
id="@Id"
role="menuitem"
style="pointer-events:auto">
@ChildContent
</li>