moonjsExamples

moonjs example (from tutorial)
git clone https://noulin.net/git/moonjsExamples.git
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>