40일차(1) : Vue.js 예제(4) - Vue.js로 이벤트 발생시키기 Step08_eventEmit 자식 component 에서 발생하는 이벤트 - root component 는 자식 component를 가질 수 있다. - 자식 component를 분리한다는 것은 어떤 작업을 나누어 분업화한다는 면에서 의미가 있다. - root component 는 전체를 조율하는 개념이다. - 자식 component 안에서 어떤 이벤트가 발생할 수 있다.(drag, submit, click, mousemove, ...) - 보통은 자식 component 안에서 해결하지만, 때로는 자식 component에서 발생하는 이벤트를 부모 component에 알려야 할 수 있다. - 부모로부터 데이터를 받아서 사용한다거나..