mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
20 lines
441 B
C#
20 lines
441 B
C#
<div>
|
||
<Spin Spinning=loading Delay=500>
|
||
<Alert
|
||
Message="Alert message title"
|
||
Description="Further details about the context of this alert."
|
||
Type="info"
|
||
/>
|
||
</Spin>
|
||
<div style="margin-top: 16px">
|
||
Loading state:
|
||
<Switch Checked=loading OnChange=toggle />
|
||
</div>
|
||
</div>
|
||
|
||
@code {
|
||
bool loading = false;
|
||
|
||
void toggle(bool value) => loading = value;
|
||
}
|