oqtane.framework/Oqtane.Client/Modules/Counter/Index.razor
2019-09-14 15:31:12 -04:00

18 lines
318 B
Plaintext

@using Oqtane.Modules
@namespace Oqtane.Modules.Counter
@inherits ModuleBase
Current count: @currentCount
<br />
<button type="button" class="btn btn-primary" @onclick="@IncrementCount">Click me</button>
<br />
<br />
@code {
int currentCount = 0;
void IncrementCount()
{
currentCount++;
}
}