aspnetcore/test/testapps/BasicTestApp/CounterComponentUsingChild....

13 lines
256 B
Plaintext

<h1>Counter</h1>
<p>Current count: <c:MessageComponent Message="@currentCount.ToString()" /></p>
<button @onclick(IncrementCount)>Click me</button>
@functions {
int currentCount = 0;
void IncrementCount()
{
currentCount++;
}
}