JSFiddle - React, Tailwind, and code Playground
by hunterliu
HTML
<div id="app">
<p>Using mustaches: {{ rawHtml }}</p>
<p>Using v-html directive: <span v-html="rawHtml"></span></p>
</div>
JavaScript
var vm = new Vue({
el: '#app',
data: {
rawHtml: ' <span style="color: red">This should be red.</span>'
}
})