I have angularJS service that returns a string, this string may contain HTML tags, something like this
"<strong>Error:</strong>Something is wrong"
and I have an element div where I want to put this message
<div class="alert alert-danger" ng-bind="vm.message" role="alert"></div>
When this message is set to the text above, in HTML page the result shows up AS IS, meaning
<strong>Error:</strong>Something is wrong.
Instead of
Error:Something is wrong.
How can I output this text like this, so that HTML tags will be rendered?