Vue元件溝通-觸發父元件的事件(parent.$emit)

經由子元件來觸發父件的事件
把事件綁在父元件裡this.$on('say-hi')
子元件呼叫這個事件的時候要寫成this.$parent.$emit('say-hi')

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* 子元件 */
<div id="child">
<span>子元件</span>
<button @click="clickButton">Click!</button>
</div>

...
methods: {
clickButton(){
this.$parent.$emit('say-hi')
}
}

/* 父元件 */
<div id="parent">
<span>父元件</span>
<child></child>
</div>

...
mounted(){
this.$on('say-hi', this.sayHi)
},
methods: {
sayHi(){
alert('Hi~~')
}
}

...

寫法上的差別

我寫了一個codepen,可以觀察觸發子元件的事件觸發父元件的事件這兩個差別

參考資料

https://stackoverflow.com/questions/45144483/difference-between-this-parent-emit-and-this-emit