v-on 是给页面绑定事件时用得,可以简写成 @
<div id="app"> <!-- 或者使用@来代替v-on: 如:@click="cli" --> <!-- v-on:click="这里可以写表达式如:msg++ " --> <button v-on:click="cli">submit{{msg}}</button> </div> <script> var vm = new Vue({ el:"#app", data:{ msg:0 }, // 事件要写到 methods 对象中 methods:{ cli:function(){ this.msg ++ } } }) </script>