Vue.JS 2 Tutorial #25 - The Event Bus

· 6년 전 · 590

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;

  }

}

 

|

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기
🐛 버그신고