Reputation: 3327
Is it possible to embed a website inside of an angularjs app? For example, I'm looking to embed jaspersoft's UI inside of an angular app, is that possible?
Upvotes: 0
Views: 821
Reputation: 22595
You can use html tag iframe in your view.
For example:
<iframe src="https://google.com"></iframe>
Upvotes: 1