1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>example</title>
  8. <script src="./mvvm.js" charset="utf-8"></script>
  9. </head>
  10. <body>
  11. <div id="mvvm">
  12. <h2>{{name}}</h2>
  13. <input type="text" x-model="name">
  14. <h3>{{val}}</h3>
  15. </div>
  16. </body>
  17. <script>
  18. const myvue = new MyVue({
  19. el: '#mvvm',
  20. data: {
  21. name: '123',
  22. val: 222,
  23. },
  24. });
  25. </script>
  26. </html>