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

8 lines
210 B
Plaintext

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