Vuejs 2: 컴포넌트에서 부모로 이벤트 전송 코드는 다음과 같습니다. html {{text}} js Vue.component('my-component', { template: 'Click me', methods: { click() { this.$emit('send', 'bye') } } }) new Vue({ el: "#app", data: { text: "hello" }, created() { this.$on('send', (text) => { this.text = text; }) } }) 작업 예: https://jsfiddle.net/rjurado/y4yf6nve/ 왜 이벤트send동작하지 않는가?부모 컴포넌트는 다음을 사용하여 자녀 컴포넌트에서 방출되는 이벤트를 직접 청취할 수 있습니다.v-o..