[Fix] CaptureUnmatchedAttributes => CaptureUnmatchedValues (#13913)

pull/13916/head
Benjamin Vertonghen 2019-08-19 19:16:33 +02:00 committed by Luke Latham
parent 3897274bf8
commit 0a5e486d7d
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ To accept arbitrary attributes, define a component parameter using the `[Paramet
```cshtml
@code {
[Parameter(CaptureUnmatchedAttributes = true)]
[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object> InputAttributes { get; set; }
}
```