<!DOCTYPE HTML><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Vue入门</title> <script src="./vue.js"></script> </head> <body> <div id="root"> <div v-on:click="handleClick">{{content}}</div> </div> <script> new Vue({ el:"#root", data: { content: "hello" }, method: { handleClick:function() { this.content="world" } } }) </script> </body></html>
添加回答
举报
0/150
提交
取消