I have a view that has a component, and that component has a child component. The view fetches data from our server. The first component implements two-way binding for some custom attributes, and it's child component does similar, using data that has been manipulated by the parent. Anyhow, when the app starts the view's component can present the fetched bound data. The component's component fails. I think I need to either update the binding, check for some event, or wait till the view has received the data before attach(). I'm not sure that the latter will look best because the component and child component can be styled to show that something is happening vs. just blocking the entire view while fetching. I found this, http://blog.williamhayes.org/2016/03/aurelia-custom-element-async-life-cycle.html; however, the import fails for me.
How can I have a view supply a component with async data that in turn supplies a child component with results?