Update Blazor @key example (#22646)
parent
ac614678f9
commit
8a4a9f0682
|
@ -1,15 +1,11 @@
|
|||
@page "/people"
|
||||
@page "/people"
|
||||
@using System.Timers
|
||||
@implements IDisposable
|
||||
|
||||
<ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<li>
|
||||
<Details Data="@person.Data" />
|
||||
</li>
|
||||
}
|
||||
</ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<Details Data="@person.Data" />
|
||||
}
|
||||
|
||||
@code {
|
||||
private Timer timer = new Timer(3000);
|
||||
|
|
|
@ -2,14 +2,10 @@
|
|||
@using System.Timers
|
||||
@implements IDisposable
|
||||
|
||||
<ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<li>
|
||||
<Details Data="@person.Data" />
|
||||
</li>
|
||||
}
|
||||
</ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<Details Data="@person.Data" />
|
||||
}
|
||||
|
||||
@code {
|
||||
private Timer timer = new Timer(3000);
|
||||
|
|
|
@ -2,14 +2,10 @@
|
|||
@using System.Timers
|
||||
@implements IDisposable
|
||||
|
||||
<ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<li>
|
||||
<Details Data="@person.Data" />
|
||||
</li>
|
||||
}
|
||||
</ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<Details Data="@person.Data" />
|
||||
}
|
||||
|
||||
@code {
|
||||
private Timer timer = new Timer(3000);
|
||||
|
|
|
@ -2,14 +2,10 @@
|
|||
@using System.Timers
|
||||
@implements IDisposable
|
||||
|
||||
<ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<li>
|
||||
<Details Data="@person.Data" />
|
||||
</li>
|
||||
}
|
||||
</ol>
|
||||
@foreach (var person in people)
|
||||
{
|
||||
<Details Data="@person.Data" />
|
||||
}
|
||||
|
||||
@code {
|
||||
private Timer timer = new Timer(3000);
|
||||
|
|
Loading…
Reference in New Issue