Lets say component name is "customComponent"
and its usage example:
<custom-component class='parent'>
<div v-if='someTruthyCondition'>
<custom-component class='child'></custom-component>
</div>
</custom-component>
Lets assume, the 'someTruthyCondition' is true util 3 components get generated and recursion stops.
I would like to know how to communicate between the child customComponent to parent customComponent in vue js?