methods选项
methods选项
methods选项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>