VUE学习——事件处理

事件分为内联事件和方法事件。
我们可以使用【v-on】(简写:@)来处理。

内联

	<button v-on:click="count++">按钮</button>
    <button @click="count++">按钮</button>
    <p>{{ count }}</p>

方法

VUE学习——事件处理_第1张图片

你可能感兴趣的:(VUE,学习,vue.js,前端)