码迷,mamicode.com
首页 > 其他好文 > 详细

v-on 事件绑定

时间:2017-12-21 17:12:52      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:body   color   oct   --   center   html   eth   gpo   function   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style>
#app{
text-align: center;
color: red;
}
body{
color: gray;
text-align: center;
}
</style>
<body>
<div id="app">
<!-- <button type="submit" v-on:click="change">submit{{count}}</button>-->
<button type="submit" @click="count +=1">submit{{count}}</button>
</div>
<script src="../vue.min.js"></script>
<script>
new Vue({
el:‘#app‘,

data:{
count:0
},

methods:{
change:function(){
this.count+=1;
}
}

})
</script>
</body>
</html>

v-on 事件绑定

标签:body   color   oct   --   center   html   eth   gpo   function   

原文地址:http://www.cnblogs.com/wxhhts/p/8081148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!