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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
feat($compile): support expansion of special ngAutobind attributes
In order to reduce some of the verbosity associated with conforming to the
ideas behind unidirectional data-flow, we can introduce a special
attribute syntax that will be automatically expanded in order to simulate
two-way data binding.
For example,
`<my-component ng-autobind-foo="bar">` will be expanded into
`<my-component foo="bar" foo-changed="bar = $event">`
Fixes#15455
0 commit comments