====== Two Way Binding ====== ngModel를 사용하려면 **app.module.ts**파일에 **FormsModule**를 포함시켜야 합니다. import { FormsModule } from '@angular/forms' import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-login', //templateUrl: './login.component.html', template: `
`, styleUrls: ['./login.component.scss'] }) export class LoginComponent implements OnInit { login_id: string; password: string; constructor() { } ngOnInit(): void { } login(){ console.log('login_id:', this.login_id, this.password) } }