Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created May 9, 2020 13:02
Show Gist options
  • Select an option

  • Save gavilanch/59175f455ca433e4b87338bda32e3224 to your computer and use it in GitHub Desktop.

Select an option

Save gavilanch/59175f455ca433e4b87338bda32e3224 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 @ref="miBoton" 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