Guest User

Untitled

a guest
Jan 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. this.events.publish('sms', this.word);
  2.  
  3. events.subscribe('sms', (word) => {
  4.  
  5. alert("word: " + word); //it really get the value
  6. this.word = word;
  7. });
  8.  
  9. <ion-input [(ngModel)]="word"></ion-input>
Add Comment
Please, Sign In to add comment