💾 Archived View for gmi.noulin.net › gitRepositories › moonjsExamples › file › first.html.gmi captured on 2024-07-09 at 02:34:03. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

moonjsExamples

Log

Files

Refs

README

first.html (203B)

     1 <body>
     2 <script src="https://unpkg.com/moonjs"></script>
     3 <div id="app1">
     4   <p>{{msg}}</p>
     5 </div>
     6 <script>
     7 const app1 = new Moon({
     8   el: "#app1",
     9   data: {
    10     msg: "Hello Moon!"
    11   }
    12 });
    13 </script>
    14 </body>