Reputation: 113
Using Angular 2 app as the parent app, is there a way to load multiple Angular 1.x apps inside the parent app?
Note: Upgrading the Angular 1.x apps is not a viable option (business).
Upvotes: 1
Views: 132
Reputation: 41581
There are two options viz.,
Reasons for point 2:
Upvotes: 0
Reputation: 1376
You can load the angular 1 apps in iframes. If they need to communicate you can use window.postMessage to talk back and forth. I am currently doing something similar and it works quite well.
Upvotes: 1