15 lines
312 B
Plaintext
15 lines
312 B
Plaintext
@page "/"
|
|
@using Microsoft.AspNetCore.Authorization
|
|
|
|
@rendermode InteractiveServer
|
|
|
|
@inject NavigationManager Nav
|
|
|
|
@code
|
|
{
|
|
protected override void OnAfterRender(bool firstRender)
|
|
{
|
|
base.OnAfterRender(firstRender);
|
|
if (firstRender) Nav.NavigateTo("/dashboard", forceLoad: true);
|
|
}
|
|
} |