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 String</h3> <div id="app"> <!-- Render HTML from a data property --> <div v-html="htmlString"></div> <!-- Render HTML from a method --> <div v-html="getHtmlString()"></div> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { htmlString: '<p>This is some <strong>HTML</strong> content.</p>' }; }, methods: { getHtmlString() { return '<p>This is some <strong>HTML</strong> content from a method.</p>'; } } }) </script> </body> </html>