v-on 事件处理指令
v-on 事件处理指令
v-on Demo
<template>
<div style="text-align: center;" id="Application">
<button v-on:click="clickButton">{{ count }}次点击</button>
</div>
</template>
<script>
export default {
data(){
return{
count: 0
}
},
methods: {
clickButton() {
this.count = this.count + 1;
}
},
};
</script>