Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ksqldb
- IntelliJ
- intellij 핵심 단축키
- vue.js
- 백명석님
- 친절한 SQL 튜닝
- Linux
- @TransactionalEventListener
- JPA
- CompletableFuture
- findTopBy
- 원격 브랜 삭제
- aws
- ksql
- HandlerMethodArgumentResolver
- 자바 ORM 표준 JPA 프로그래밍
- git
- @Transactional Propagation
- 자바 ORM 표준 JPA 프로그래밍 정리
- 마이크로 서비스
- javascript case
- intellij 즐겨찾기
- Stream
- java
- 리눅스
- Spring Cloud Netflix
- multipart테스트
- 리팩토링 2판
- #docker compose
- intellij favorites
Archives
- Today
- Total
시그마 삽질==six 시그마
Vue.js Emit 본문
자식은 events를 통해 부모에게 메시지를 보낸다.
하위 컴포넌트에서 상위 컴포넌트로의 통신방법은 하위 컴포넌트에서 이벤트를 발생시켜서 상위 컴포넌트 메소드를 트리거한다.
1. 코드형식
//하위 컴포넌트에서 이벤트 호출
this.$emit('이벤트 명');
//상위 컴포넌트 이벤트 수신 방향을 ----> 로 읽으면 편함 하위 이벤트가 상위 메소드를 트리거!!
<div id="app">
<child-component v-on:이벤트 명="상위 컴포넌트에서 실행될 메서드"></child-component>
</div>
2. 이벤트 예시
<div id="app">
<child-component v-on:son-call-parent="parentCalled"></child-component>
</div>
Vue.component('child-component', {
template: '<button v-on:click="myMethodCall">show</button>',
methods: {
myMethodCall: function() {
this.$emit('son-call-parent');
}
}
});
new Vue({
el: '#app',
methods: {
parentCalled: function() {
console.log("이벤트 잘 받음!!");
}
}
});
//결과 : 이벤트 잘 받음!!
'프로그래밍 > Javascript' 카테고리의 다른 글
vue의 생명주기 (0) | 2020.05.02 |
---|---|
Vue란 무엇인가? (0) | 2020.05.02 |
Vuex (0) | 2020.04.19 |
Vue.js 이벤트 버스(event bus) (0) | 2020.04.14 |
Vue.js props 속성 (0) | 2020.04.14 |
Comments