@page "/"
@count
<a href="" @onclick="@SomeAction" @onclick:preventDefault >
click here to add
</a>
@code {
int count;
void SomeAction(){
count++;
}
}
namespace BlazorFiddleProject
{
using Microsoft.AspNetCore.Components.Builder;
using Microsoft.Extensions.DependencyInjection;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
}
public void Configure(IComponentsApplicationBuilder app)
{
app.AddComponent<App>("app");
}
}
}