mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
28e195806d
Co-authored-by: James Yeung <shunjiey@hotmail.com>
19 lines
515 B
C#
19 lines
515 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
@{
|
|
var coinfigs = _configDict.Values.OrderBy(x=>x.Order).ToList();
|
|
if (coinfigs.Count > 0)
|
|
{
|
|
<div>
|
|
<div class="ant-message" style="top: @(_top)px;" @ref="Ref">
|
|
<span>
|
|
@foreach (var config in coinfigs)
|
|
{
|
|
<MessageItem @key="config" Config="config"></MessageItem>
|
|
}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
}
|
|
} |