aspnetcore/samples/StandaloneApp/Pages/Counter.cshtml

17 lines
285 B
Plaintext

@page "/counter"
@using Microsoft.AspNetCore.Blazor
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button onclick="@IncrementCount">Click me</button>
@functions {
int currentCount = 0;
void IncrementCount(UIMouseEventArgs e)
{
currentCount++;
}
}