How to make dynamic HTML code on vueJs

In vueJs, the contents are inserted in pure HTML - they will not be compiled as View templates. If you want to compile them, compose templates with v-html.
<div v-html="Your code html here"></div>

Comments