@page "/weather"
@using BlazorProject.Models
@inject HttpClient Http
This component demonstrates fetching data from the server.
@if (items == null) {Loading...
} else {Id | Display Name | Stack Size | Maximum Durability | Enchant Categories | Repair With | Created Date |
---|---|---|---|---|---|---|
@item.Id | @item.DisplayName | @item.StackSize | @item.MaxDurability | @(string.Join(", ", item.EnchantCategories)) | @(string.Join(", ", item.RepairWith)) | @item.CreatedDate.ToShortDateString() |