[SalesForce] How to refresh a VF page from lightning component included in subtab

I have added a lightning component in a subtab(Actions) of Account detail in Lightning experience. There is one other subtab(Account Plan) which is showing a VF page.

Now I want to refresh the VF page from the lightning component without reloading the URL.

enter image description here

Best Answer

Try using lightning events.

If you trigger an application event on your Actions lightning component, then you need to listen to that event on your other component for refreshing it.

Now - because your other component is a VF page and not a real component, you are in a problem.

So if you can migrate that VF page into a component, you can implement an event listener over there.