v-on
이벤트 이름은 소문자로 자동 변환되기 때문에 반드시 케밥 케이스를 사용해야한다.
this.$emit('my-event')
<my-component @my-event="doSomethig"></my-compoenent>
이벤트 이름은 자동 변환을 제공하지 않는다. 그래서 emitted evnet name
과 event name
은 완벽히 동일해야 한다.
emit
: (빛·열·가스·소리 등을) 내다[내뿜다]
<button @click="$emit('enlarge-text', 0.1)">Enlarge text</button>
<blog-post @enlarge-text="postFontSize+= $event"></blog-post>
Vue.js v2.x 공식문서
https://v2.vuejs.org/v2/guide/components-custom-events.html
https://v2.vuejs.org/v2/guide/components.html#Emitting-a-Value-With-an-Event