1_helloworld.html 706 B

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. <title>Document</title>
  7. <script src="./js/vue.js"></script>
  8. </head>
  9. <body>
  10. <div id="app">
  11. <h1> {{str}} </h1>
  12. <h2> {{str}} </h2>
  13. </div>
  14. <script>
  15. // let oApp = document.querySelector('#app');
  16. // oApp.innerText = "hello world!";
  17. let app = new Vue({
  18. el:'#app',//挂载点 只有在这个元素内部才能访问到vue实例 vue 才能工作
  19. data:{//数据 放置与页面有关联性的数据
  20. str:'hello world!'
  21. }
  22. });
  23. </script>
  24. </body>
  25. </html>