Fix Blazor forms example (#15632)

pull/15645/head
Luke Latham 2019-11-09 16:03:07 -06:00 committed by GitHub
parent a49a98069c
commit 5f5c5537ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ A form is defined using the `EditForm` component. The following form demonstrate
<DataAnnotationsValidator />
<ValidationSummary />
<InputText id="name" @bind-Value="@exampleModel.Name" />
<InputText id="name" @bind-Value="exampleModel.Name" />
<button type="submit">Submit</button>
</EditForm>