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.
29 lines
593 B
29 lines
593 B
@page "/pets3"
|
|
|
|
<h1>Pets</h1>
|
|
|
|
<TableTemplate Items="pets">
|
|
<TableHeader>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
</TableHeader>
|
|
<RowTemplate>
|
|
<td>@context.PetId</td>
|
|
<td>@context.Name</td>
|
|
</RowTemplate>
|
|
</TableTemplate>
|
|
|
|
@code {
|
|
private List<Pet> pets = new()
|
|
{
|
|
new Pet { PetId = 2, Name = "Mr. Bigglesworth" },
|
|
new Pet { PetId = 4, Name = "Salem Saberhagen" },
|
|
new Pet { PetId = 7, Name = "K-9" }
|
|
};
|
|
|
|
private class Pet
|
|
{
|
|
public int PetId { get; set; }
|
|
public string? Name { get; set; }
|
|
}
|
|
} |