aspnetcore/test/testapps/BasicTestApp/PropertiesChangedHandlerPar...

8 lines
208 B
Plaintext

@addTagHelper "*, BasicTestApp"
<PropertiesChangedHandlerChild SuppliedValue=@valueToSupply />
<button onclick=@{ valueToSupply++; }>Increment</button>
@functions {
private int valueToSupply = 100;
}