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.
2 parents f555332 + b8309d2 commit ffd5b4cCopy full SHA for ffd5b4c
guides/release/upgrading/editions.md
@@ -1854,13 +1854,13 @@ bindings will not work:
1854
This does not work, since @value is
1855
an argument and is immutable
1856
-->
1857
-{{input value=@value}}
+<Input @value={{@value}} />
1858
1859
<!--
1860
Instead, we should update the value
1861
by passing an _action_ to the component
1862
1863
-{{input value=@value key-up=@updateValue}}
+<Input @value={{@value}} @key-up={{@updateValue}} />
1864
```
1865
1866
Additionally, the `mut` helper generally can't be used for the same reason:
0 commit comments