Display unescaped HTML in Vue.js

You can use the v-html directive to show it.
like this:

<td v-html="desc"></td>

Leave a Comment