We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f017e commit 6be1de5Copy full SHA for 6be1de5
guides/release/upgrading/editions.md
@@ -1783,13 +1783,15 @@ bindings will not work:
1783
This does not work, since @value is
1784
an argument and is immutable
1785
-->
1786
-<Input @value={{@value}} />
+<label for="title">Title</label>
1787
+<Input @value={{@value}} id="title" />
1788
1789
<!--
1790
Instead, we should update the value
1791
by passing an _action_ to the component
1792
-<Input @value={{@value}} @key-up={{@updateValue}} />
1793
1794
+<Input @value={{@value}} @key-up={{@updateValue}} id="title" />
1795
```
1796
1797
Additionally, the `mut` helper generally can't be used for the same reason:
0 commit comments