[Angular] Data binding 1
data binding은 엘리먼트 프로퍼티에 동적으로 바인딩이 가능하다. import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-test', templateUrl: './test.component.html', styleUrls: ['./test.component.css'] }) export class TestComponent implements OnInit { disabled = true; constructor() { setTimeout(() => { this.disabled = false; }, 5000); } ngOnInit() { } } test.component.ts test test.component.html ..
Angular8
2020. 4. 7. 14:28