ant-design-blazor/components/auto-complete/AutoCompleteOptGroup.razor.cs
TimChen f09e71ba06 feat: auto complete refactor (#529)
* feat: auto complete refactor

* feat: autocomplete Refactor

* feat: autocomplete property

* feat: autocomplate

* feat: autocomplete

* feat: autocomplete

Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-08-26 22:37:08 +08:00

21 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntDesign
{
public partial class AutoCompleteOptGroup : AntDomComponentBase
{
[Parameter]
public string Label { get; set; }
[Parameter]
public RenderFragment LabelFragment { get; set; }
[Parameter]
public RenderFragment ChildContent { get; set; }
}
}