v-on 事件绑定

Posted 欢迎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了v-on 事件绑定相关的知识,希望对你有一定的参考价值。

<!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 事件绑定的主要内容,如果未能解决你的问题,请参考以下文章

Vue之DOM元素事件绑定_v-on指令

Vue学习之路8-v-on指令学习简单事件绑定之属性

v-on 绑定单个或多个事件

V-On: 绑定事件监听属性

669 v-on:绑定多个事件,参数传递,修饰符

petite-vue源码剖析-事件绑定`v-on`的工作原理