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 ca19658 commit b8309d2Copy full SHA for b8309d2
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