mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 04:58:05 +08:00
f09e71ba06
* feat: auto complete refactor * feat: autocomplete Refactor * feat: autocomplete property * feat: autocomplate * feat: autocomplete * feat: autocomplete Co-authored-by: James Yeung <shunjiey@hotmail.com>
16 lines
362 B
C#
16 lines
362 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<div class="@ClassMapper.Class" style="@Style" id="@Id" @onclick="@OnClick" @onmouseenter="@OnMouseEnter">
|
|
<div class="ant-select-item-option-content">
|
|
@if (ChildContent != null)
|
|
{
|
|
@ChildContent
|
|
}
|
|
else
|
|
{
|
|
@Label
|
|
}
|
|
</div>
|
|
</div>
|