Vue 2 - 클릭 이벤트 또는 입력 이벤트에서 실행되었을 때 $emit에서 다른 동작 아래 (여기에 fiddle)에서는 아래 클릭 이벤트에서 발생하는 $emit이 예상대로 작동합니다.입력이벤트에 의해 기동된 $emit은 같은 방법으로 배선되어 있습니다만, 부모에게는 $emit가 수신되지 않습니다. {{ message }} {{ otherMessage }} Vue.component('child-comp', { template: 'emitThe input event fired', data: function() { return { inputEventFired: false }; }, methods: { onInput: function(e) { this.inputEventFired = true; this.$em..