mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 04:58:05 +08:00
ef22dd5a1b
* 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>
15 lines
340 B
C#
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>
|
|
|
|
|