<!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 事件绑定
Posted 欢迎
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了v-on 事件绑定相关的知识,希望对你有一定的参考价值。
以上是关于v-on 事件绑定的主要内容,如果未能解决你的问题,请参考以下文章