mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +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>
21 lines
446 B
C#
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; }
|
|
}
|
|
}
|