Issue:
I am trying to parse an HTML string inside a blade template and then once the blade template is build, it get passed into a slot inside Vue.
example.blade.php
<p>{!! $market['description'] !!}</p>
Example.vue
<div class="d-none d-md-block">
<slot name="description"></slot>
</div>
Right now, when I click refresh it actually parses the HTML string and displays it correctly. And then once the blade template is injected into the slot in the Vue file, it goes back to an HTML string.
I hope this explanation makes sense. Let me know if you have any questions. Also, edits for the wording of the title are welcome.