自定义事件
什么时候触发事件, $emit代码就写在哪
是否需要获取系统参数, 是加括号
传递多个参数
为什么要自定义事件?
父组件是使用 props 传递数据给子组件,但如果子组件要把数据传递回去,就需要使用自定义事件.
自定义事件语法
使用 v-on 绑定自定义事件
使用 $on(eventName) 监听事件
使用 $emit(eventName) 触发事件
案例 子组件监听父组件
- 父组件可以在使用子组件的地方直接用 v-on 来监听子组件触发的事件
- 子组件已经和它外部完全解耦了, 它所做的只是触发一个父组件关心的内部事件
<div id="app">
<div id="counter-event-example">
<p>{{ total }}</p>
<button-counter v-on:increment="incrementTotal"></button-counter>
<button-counter v-on:increment="incrementTotal"></button-counter>
</div>
</div>
<script>
Vue.component('button-counter', {
template: '<button v-on:click="increment">{{ counter }}</button>',
data: function () {
return {
counter: 0
}
},
methods: {
increment: function () {
this.counter += 1
this.$emit('increment')
}
},
})
new Vue({
el: '#counter-event-example',
data: {
total: 0
},
methods: {
incrementTotal: function () {
this.total += 1
}
}
})
</script>