Skip to content

Instantly share code, notes, and snippets.

@tuannguyenssu
Last active July 8, 2019 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuannguyenssu/ef91bdc688decc49e1f38193a83bc56c to your computer and use it in GitHub Desktop.
Save tuannguyenssu/ef91bdc688decc49e1f38193a83bc56c to your computer and use it in GitHub Desktop.
Blazor counter example
@page "/counter"
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button class="btn btn-primary" onclick="@IncrementCount">Click me</button>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment