Is it possible to have an asynchronous operation in the parent component and then notify the child component once it has completed? Can I set up a watch in the child component to detect when a specific property changes, similar to the following example:
new Vue({
props:['parentReady'],
watch:{
parentReady(val){
alert('The parentReady prop has been changed');
}
}
})