Angular 2 Tutorial [3] - Components and Data Binding

preview_player
Показать описание

In this video we will go over components and data binding using interpolation, property binding, event binding and two way data binding.
Рекомендации по теме
Комментарии
Автор

A simple explanation about data binding, thank you very much...

sankasanjeeva
Автор

for the new followers .
Angular 2 on 31/07/2017 few things have changed.


2) app.Module.ts

import { AppComponent } from './app.component';
import { MyComponent } from './my-component.component';
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ AppComponent, MyComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }

aissataourarte
Автор

Hi Brad, it seems that quite a few things have changed from when you posted.

delroyfinesse
Автор

Very simple to understand !! Thank you

moneysky
Автор

Thank you for your video! You are awesome! Please, go ahead! I'm waiting for your new video1

kirillkuts
Автор

Hi, at 3:30 the directive array is not defined in the type definitions, I using 2.2.1 version. Thanks

bmxquiksilver
Автор

Really nice... I shared your movie in facebook. Thank you

sergioantonio
Автор

Is there really a point to declaring the private variables above the constructor? It works without them there also. Besides, it doesn't make sense that you'd call it private instead of public if it's going to be accessible within the view, and not just used within the class itself.

JD-yzcn