screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <h3>Vue Render HTML without v-html</h3> <div id="app"> <!-- Render HTML from a data property --> <div ref="htmlContainer"></div> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { }; }, mounted() { const htmlString = `<h1>This is Heading</h1><p>This is Paragraph</p>`; this.$refs.htmlContainer.innerHTML = htmlString; } }) </script> </body> </html>