事件分为内联事件和方法事件。 我们可以使用【v-on】(简写:@)来处理。 内联 <button v-on:click="count++">按钮</button> <button @click="count++">按钮</button> <p>{{ count }}</p> 方法