I'm working on incorporating highlight JS into my Vue project, and I am looking to display a div on the edges of my code. I've experimented with the following:
<pre v-highlightjs="viewerHTML"><div>Something here</div><code class="html">
and
<pre v-highlightjs="viewerHTML">'<div>Something here</div>'<code class="html">
However, both attempts resulted in the div section being hidden. How can I successfully display the complete code?