I am making a blog app using Vue.js for frontend and Node.js for backend.
I am using a rich text editor (vue2-editor) in frontend for users to create the content of the blog. I want to store that content in the database (MySQL) and retrieve it. Currently whatever content I am storing is going as a plain HTML.
<p><strong>This is Blog Heading</strong></p><p><br></p><p><u>This is underlined</u></p><p><br></p><p>This is start of the paragraph</p>
And after retrieving from the database it renders is as a string and not HTML
How can I get it to display the HTML properly?