What is the difference of using @bind and @bind-value?
I made this simple example, and testing it in the browser, I didn't see any difference.
<p>@@bind @increment1</p><input type="text" @bind="@increment1"/><p>@@bind-value @increment2</p><input type="text" @bind-value="@increment2"/>@code { string increment1; string increment2;}