[Angular] 양방향 바인딩 Two-Way-DataBinding
우선 양방향 바인딩을 하기 위해서는 주의할 점이 있다. import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { TestComponent } from './test/test.component'; import { FormsModule } from '@angular/forms'; @NgModule({ declarations: [ AppComponent, TestComponent ], imports: [ BrowserModule, FormsModule ], providers: [], bo..
Angular8
2020. 4. 7. 17:01