v-html

up:: Vue Directives Whenever putting out a variable, you can use v-html="variable" to not escape the code but print out html directly.

<p>Using v-html directive: <span v-html="rawHtml"></span></p>

Warning

This can lead to XSS scripting vulnerabilities.