@inherits LayoutComponentBase
@* *@
@Body
@code {
bool sidebarExpanded = true;
string ApplicationName = string.Empty;
string Page = string.Empty;
protected override async Task OnInitializedAsync()
{
ApplicationName = configService?.GetConfig()?.ApplicationName;
Page = NavigationManager.ToBaseRelativePath(NavigationManager.Uri);
}
private void OnClickMenu(MenuItemEventArgs args)
{
Page = args.Text;
}
}