You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
535 B

@using Masa.Blazor.Pro.Global
@inject NavHelper NavHelper
<MNavigationDrawer App Clipped>
<MList Dense Nav>
@foreach (var item in NavHelper.Navs)
{
<MListItem Link Href="@item.Href">
<MListItemIcon>
<MIcon>@item.Icon</MIcon>
</MListItemIcon>
<MListItemContent>
<MListItemTitle>@item.Title</MListItemTitle>
</MListItemContent>
</MListItem>
}
</MList>
</MNavigationDrawer>