How can I modify the data of a component from another "distant" component? I have the following structure:
Principal
importa a secundario_1
importa a secundario_2
importa a secundario_3
| secundario_3 debe modificar datos de Capa
Capa <---
I just want to modify the abc
Layer value from child_3
data:() => ({
abc: 'hola mundo'
})
I tried with async
and $emit
but it only works for me between parent and child. Thank you