demo1.html 893 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <script src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script>
  9. </head>
  10. <body>
  11. <div id="root">
  12. <h1>hello {{name}}</h1>
  13. <h2>{{school.class}}</h2>
  14. <h3>{{age[0]}}</h3>
  15. </div>
  16. <script type="text/javascript">
  17. const vue = new Vue({
  18. el:'#root',
  19. data:{
  20. name:'zhangsan',
  21. school:{
  22. class:'163',
  23. grade:'123'
  24. },
  25. age:['12','15']
  26. }
  27. });
  28. </script>
  29. </body>
  30. </html>