In angular 1.x, one-way databinding syntax was ::
I'm trying to pass an object down to a child component with one-time binding. The child needs to get the initial data from the parent, but the parent doesn't ever change the data and doesn't need to know if the child changed it.
<parent [child-data]="childData"/>
How can I one-time bind this?