2020-05-29 00:33:49 +08:00
|
|
|
|
@namespace AntDesign
|
2019-12-17 12:52:17 +08:00
|
|
|
|
@inherits AntDomComponentBase
|
|
|
|
|
|
|
|
|
|
@if (If == null || If.Invoke())
|
|
|
|
|
{
|
|
|
|
|
@ChildContent
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@code{
|
|
|
|
|
|
|
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
|
|
|
|
|
|
|
|
[Parameter] public Func<bool> If { get; set; }
|
|
|
|
|
}
|