Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / iron-input / README.md
blob05a74b721248306a7850dbb636181e369c7f814e
1 # iron-input
3 An input with data binding.
5 By default you can only get notified of changes to an `input`'s `value` due to user input:
7 ```html
8 <input value="{{myValue::input}}">
9 ```
11 `iron-input` adds the `bind-value` property that mirrors the `value` property, and can be used
12 for two-way data binding. `bind-value` will notify if it is changed either by user input or by script.
14 ```html
15 <input is="iron-input" bind-value="{{myValue}}">
16 ```