I have a element called parent-element
with a property called name
.
parent-element
has a child element called child-element
.
Both have a two way bound property called name
Adding a code snippet to explain what I told above
<parent-element>
<template>
<child-element name={{name}}> </child-element>
</template>
<script>
properties: {
name: String
}
</script>
</parent-element>
My Issue:
I want parent-element
to wait until child-element
executes and sends back the property name
(or) at least the parent-element
must re-render after each time child-element
sends new value for name
property.
Is there any example on how to do this ?