| 1. |
How to render raw HTML in a vue js template? |
|
Answer» To use raw HTML in a VUE JS template, users have to implement the v-HTML. We have to pass a reference to an HTML string in the data MODEL to v-HTML present in component template. Now, the raw HTML will be rendered into the component. Update the legacySystemHTML property and the HTML will update ACCORDING to it. Find high-quality VUE JS interview question and answers here for guaranteed career success. Example<template> <div v-html="legacySystemHTML"> </div> </template> <script> export default { data() { return { // Just like JSX! Oh wait... legacySystemHTML <FONT color="#faddad" size="-2"> <MARQUEE>Please enter your name to continue.</MARQUEE> ... </FONT> } } } </script> |
|