I am saving the following information with htmlentities
<i class='fa fa-user'></i>
In my database the information is saved as follows
<i class='fa fa-user'></i>
I am receiving this information on my frontend with vue js. Iam using the v-html directive to print.
And what I wanted is o print in html, like for example, when i save without htmlentities
Does anyone know how I could do this on the frontend with vue?