display * html element vuejs code example
Example: vuejs display html
...
<p>Use `v-html` : <span v-html="rawHtml"></span></p>
...
<script>
export default {
data() {
return {
rawHtml: 'Hi <strong>Vue.js</strong>'
}
}
}
</script>