選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

15 行
301 B

  1. @using Models.Identity
  2. @page "/"
  3. @code{
  4. protected override async void OnInitialized()
  5. {
  6. var is_logedin = await LocalStorage.ContainKeyAsync(Statics.LoginTokenKey);
  7. if (!is_logedin)
  8. NavigationManager.NavigateTo("/login");
  9. base.OnInitialized();
  10. }
  11. }