@using Microsoft.AspNetCore.Blazor.Components
You supplied: @SuppliedValue
I computed: @computedValue
@functions {
[Parameter]
int SuppliedValue { get; set; }
private int computedValue;
protected override void OnParametersSet()
{
computedValue = SuppliedValue * 2;
}
}