vue render data as html code example
Example 1: vue render html raw
<p>Using mustaches: {{ rawHtml }}</p>
<p>Using v-html directive: <span v-html="rawHtml"></span></p>
Example 2: ng-bind-html vuejs
<div v-html="html"></div>
<!-- same as -->
<div>{{{ html }}}</div>