mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
9 lines
226 B
C#
9 lines
226 B
C#
|
@namespace AntDesign
|
|||
|
@inherits AntDomComponentBase
|
|||
|
|
|||
|
|
|||
|
@foreach (ModalRef modalRef in _modalRefs)
|
|||
|
{
|
|||
|
var modalConfig = modalRef.Config;
|
|||
|
<ConfirmDialog @key="@modalConfig" ModalRef="@modalRef" Config="@modalConfig" />
|
|||
|
}
|