I have two components A & B, both are not child or parent of each other. A has data as
export default {
data() {
return {
info1: 'info1'
}
}
}
Now I want to update this info1 proppoerty from component B. Is it possible?