How to maintain communication among Multi window Angular App
0
I am creating an angular app which has two components, one takes some input and second shows it real time with the help of @Input() and @Output() decorators. Now I need to dock one component out to new browser window, so i can drag that component to another monitor screen. I am using window.open() for docking out the component to new window, but it breaks the communication as it bootstrap a new app in that new window. Is there any mechanism to keep the communication among multiple windows. Any help or even small clue of how to do this is highly appreciated. Thanks in advanced!
rxjs angular5
share | improve this question
asked Nov 15 '18 at 13:47...