I currently have an issue regarding vueJS.
I have a server side application which renders my html and sends it back in a string.
I want to insert this html into my page to display it.
I have it set up like this currently:
Template:
<div class="section" v-model="html">
{{ html.body }}
</div>
This outputs the html as a string opposed to rendering it to the page.
Any idea on how to solve this ?
Thanks.