In this video,I explained event binding and event filtering in Angular. Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my Angular Playlist . Please visit my YouTube Videos . Visit my Facebook Page and Instagram Page #eventbinding #eventfiltering #angular #webguru #angularcoders #angularprogrammers. The code is as follows - data.component.ts - import { Component } from '@angular/core'; @Component ({ selector: 'data', template: ` <h5> Event Binding </h5> <button class="btn btn-primary" (click)="BtnClick($event)"> Click Me </button> <br/> <br/> <h5> Event Filtering </h5> <input type="text" (ke...
In this video,I explained service in Angular. Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my Angular Playlist . Please visit my YouTube Videos . The code is as follows - courses.component.ts - import { CoursesService } from './courses.service'; import { Component } from '@angular/core'; @Component ({ selector: 'courses', template: ` <ul start=5> <li *ngFor= "let course of courses"> {{ course }} </li> </ul> ` }) export class CoursesComponent { courses; constructor(service: CoursesService) { //dependency injection this.courses = service.getCourse...
Comments
Post a Comment