16 lines
393 B
Plaintext
16 lines
393 B
Plaintext
@inherits LayoutComponentBase
|
|
@layout ApplicationLayout
|
|
|
|
@if (ApplicationLayout != null)
|
|
{
|
|
<MudDrawer @bind-Open="@ApplicationLayout.DrawerOpen" ClipMode="DrawerClipMode.Always">
|
|
<NavMenu/>
|
|
<MudSpacer/>
|
|
</MudDrawer>
|
|
}
|
|
else
|
|
{
|
|
<MudAlert Severity="Severity.Error" Variant="Variant.Outlined">Error getting cascading parameter 'ApplicationLayout'!</MudAlert>
|
|
}
|
|
|
|
@Body |