mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
11 lines
320 B
C#
11 lines
320 B
C#
|
@namespace AntDesign
|
|||
|
@inherits AntDomComponentBase
|
|||
|
|
|||
|
@foreach (ConfirmRef confirmRef in _confirmRefs)
|
|||
|
{
|
|||
|
var modalConfig = confirmRef.Config;
|
|||
|
<Confirm @key="@modalConfig"
|
|||
|
ConfirmRef="@confirmRef"
|
|||
|
Config="@modalConfig"
|
|||
|
OnRemove="@OnConfirmRemove"/>
|
|||
|
}
|