Vue模板语法
文档: https://v3.cn.vuejs.org/guide/template-syntax.html
原始HTML
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/vue.min.js"></script> </head> <body> <div id="example1"> <p>Using mustaches: {{ rawHtml }}</p> <p>Using v-html directive: <span v-html="rawHtml"></span></p> </div> <script type="text/javascript"> const RenderHtmlApp = { data(){ return { rawHtml : '<span style="color: red">This should be red.</span>' } } } Vue.createApp(RenderHtmlApp).mount("#example1") </script> </body> </html>