12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="./js/vue.js"></script>
- </head>
- <body>
- <div id="app">
- <h1>{{str}}</h1>
- <button @click="changeStr">按钮</button>
- </div>
- <script>
- let app = new Vue({
- el: '#app',
- data:{
- str:"hello world"
- },
- methods: {
- changeStr:function(){
- this.str = "你好世界";
- }
- }
- })
- </script>
- </body>
- </html>
|