lightweight
lightweight

Reputation: 3327

embedding a website inside of a angularjs app

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

Answers (1)

Krzysztof Atłasik
Krzysztof Atłasik

Reputation: 22595

You can use html tag iframe in your view.

For example:

<iframe src="https://google.com"></iframe>

Upvotes: 1

Related Questions