Vue.JS 2 Tutorial #25 - The Event Bus > JS프레임워크

JS프레임워크

Vue.JS 2 Tutorial #25 - The Event Bus 정보

Vue Vue.JS 2 Tutorial #25 - The Event Bus

본문

The Event Bus  조금씩 어려워지네요.. 

다른 글도 참조하셔서 https://medium.com/easyread/vue-as-event-bus-life-is-happier-7a04fe5231e1

 

export const bus = new Vue();

보내기

bus.$emit('titleChanged', '파라미터');

 

받기

 

created()

{

  bus.$on('titleChanged', (data) => {

    this.title = data;

  }

}

 

추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로