Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created May 17, 2020 01:07
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 gavilanch/9dd592d288680bbe4857e11c7825d22c to your computer and use it in GitHub Desktop.
Save gavilanch/9dd592d288680bbe4857e11c7825d22c to your computer and use it in GitHub Desktop.
@page "/counter"
@inject IJSRuntime js
<div @ref="container">
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button id="counterClick" class="btn btn-primary counterClickC" @onclick="IncrementCount">Click me</button>
</div>
@code {
private ElementReference container;
protected async override Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
await js.InvokeVoidAsync("initializeCounterComponent", container);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment