6_修改数据.html 644 B

12345678910111213141516171819202122232425262728
  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. <button @click="changeStr">按钮</button>
  13. </div>
  14. <script>
  15. let app = new Vue({
  16. el: '#app',
  17. data:{
  18. str:"hello world"
  19. },
  20. methods: {
  21. changeStr:function(){
  22. this.str = "你好世界";
  23. }
  24. }
  25. })
  26. </script>
  27. </body>
  28. </html>