Skip to content

Instantly share code, notes, and snippets.

@JiaLiPassion
Created July 18, 2018 01:43
Show Gist options
  • Save JiaLiPassion/d0cd893084a6209cb75fc6bbc6b49d28 to your computer and use it in GitHub Desktop.
Save JiaLiPassion/d0cd893084a6209cb75fc6bbc6b49d28 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
@Output() highlight = new EventEmitter<string>();
click() {
this.highlight.emit('highlight');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment