@page "/mybinding"
<h1>@Title</h1>
<p>
<span>失去焦点时更新属性值 Title changes when the input box loses focus (onChange).</span>
<input type="text" @bind="Title"/>
</p>
<p>
<span>实时更新属性值 Title changes when the input box receives input (onInput).</span>
<input type="text" @bind="Title" @bind:event="oninput" />
</p>
@code {
private string Title { get; set; } = "Data Binding gives you wings!";
}