Text Replacement

{{value}}

  • index.html
<h1>{{ title }}</h1>
<script>
    const app = new QUI({
        id: "app",
        data: {
            title: "test"
        }
    });
</script>
  • Result
<body id="app">
    <h1>test</h1>
</body>

:html

  • index.html
<section :html="html"></section>
<script>
    const app = new QUI({
        id: "app",
        data: {
            html: "<b>innerHtml</b>"
        }
    });
</script>
  • Result
<body id="app">
    <section>
        <b>innerHtml</b>
    </section>
</body>
中文