You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The template contains an [`{{input}}`](../../templates/input-helpers/) helper that renders as a text field, in which the user can type a pattern to filter the list of cities used in a search.
70
-
The `value` property of the `input` will be kept in sync with the `value` property in the component.
66
+
The template contains an [`<Input />`](../../templates/input-helpers/) helper
67
+
that renders as a text field, in which the user can type a pattern to filter the
68
+
list of cities used in a search. The `@value` argument of the `<Input />` will
69
+
be kept in sync with the `value` property in the component.
71
70
72
-
Another way to say this is that the `value` property of `input` is [**bound**](../../object-model/bindings/) to the `value` property of the component.
73
-
If the property changes, either by the user typing in the input field, or by assigning a new value to it in our program,
74
-
the new value of the property is present in both the rendered web page and in the code.
71
+
Another way to say this is that the `@value` argument of `<Input />` is
72
+
[**bound**](../../object-model/bindings/) to the `value` property of the
73
+
component. If the property changes, either by the user typing in the input
74
+
field, or by assigning a new value to it in our program, the new value of the
75
+
property is present in both the rendered web page and in the code.
75
76
76
77
The `key-up` property will be bound to the `handleFilterEntry` action.
0 commit comments