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.
At the moment if a component is designed to support a binding which should be one time everytime, we need to add the one-time binding :: notation to the binding attribute each time the component is used.
Expected / new behavior:
In the component definition, provide an :: binding type. So the above example if it was supported on the component level would see the component defined as follows:
Consequently usage of the component would then be: <my-component item="someBinding"></my-component>
Minimal reproduction of the problem with instructions:
Basically if i have a component with a one way binding which would/should use one-time binding, i do not want to define the one time binding everytime on the parent template level. This would also enforce the usage of one time-binding for this particular binding on the component.