Skip to content

Instantly share code, notes, and snippets.

@ajspeller
Last active September 1, 2017 13:09
Show Gist options
  • Save ajspeller/17c45ad5a9afb17cacaedb7c2de832d1 to your computer and use it in GitHub Desktop.
Save ajspeller/17c45ad5a9afb17cacaedb7c2de832d1 to your computer and use it in GitHub Desktop.
In the component ...
@Output() changed = new EventEmitter<Character>();
characters: Character[];
selectedCharacter: Character;
select(selectedCharacter: Character) {
this.selectedCharacter = selectedCharacter;
this.changed.emit(selectedCharacter);
}
In the template ...
<story-characters [storyId]="7"
(changed)=changed($event)>
</story-characters>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment