Fixed example (#12485)

pull/12487/head
sjmdsky 2019-05-21 23:12:00 +08:00 committed by Scott Addie
parent 04b68114cc
commit d70de9317f
1 changed files with 2 additions and 2 deletions

View File

@ -349,9 +349,9 @@ When the button is selected in the Child component:
@{ var message = "Default Text"; }
<ChildComponent
OnClick="@(async () => { await Task.Yield(); messageText = "Blaze It!"; }" />
OnClick="@(async () => { await Task.Yield(); messageText = "Blaze It!"; })" />
@function {
@functions {
private string messageText;
}
```