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.
25 lines
454 B
25 lines
454 B
@page "/event-handler-example-2"
|
|
|
|
<h1>@currentHeading</h1>
|
|
|
|
<p>
|
|
<label>
|
|
New title
|
|
<input @bind="newHeading" />
|
|
</label>
|
|
<button @onclick="UpdateHeading">
|
|
Update heading
|
|
</button>
|
|
</p>
|
|
|
|
@code {
|
|
private string currentHeading = "Initial heading";
|
|
private string? newHeading;
|
|
|
|
private async Task UpdateHeading()
|
|
{
|
|
await Task.Delay(2000);
|
|
|
|
currentHeading = $"{newHeading}!!!";
|
|
}
|
|
} |