I'm trying to get my Vue.js app to render raw html instead of the code itself.
The code from the server looks like this:
<a href="http://google.com">Google</a>
But when it gets render, the html code get interpreted as text instead of code
<a href="http://google.com">Google</a>
I've tried using v-html, decodeURIComponent, and a filter but no luck:
Is it possible to fetch escaped code from the database and render it as raw html in Vue.js?