Hi @sateeshk9319722,
May be you can try to trigger event from 1 view to another.
So, when a user logs in, you can fire the event which the other view/component will be listening to.
You can refer to this article https://www.danvega.dev/blog/2019/06/05/triggering-events-router-vue/
We did something similar to this using broadcasts in angular js. May be you can try on the same lines.
function postUserLoggedIn(options) {
$rootScope.$broadcast('userLoggedIn');
$window.parent.postMessage({
action: 'userLoggedIn',
profile: options.profile,
idToken: options.idToken || undefined
}, '*');
$scope.$on('userLoggedIn', function () {
$scope.isLoggedIn = true;
fillUserDetails();
});
}