
이벤트로 값을 전달 하는 법 input 태그를 사용하여 설명한다. 이런 코드 가 있다. input 이란 이벤트가 발생 할 때 마다 showName 이란 함수를 실행하라는 말이다. 그러면 Component 코드를 보자 import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-test', templateUrl: './test.component.html', styleUrls: ['./test.component.css'] }) export class TestComponent implements OnInit { name; constructor() { } ngOnInit() { } showName() { console.log('hi..
Angular8
2020. 4. 7. 15:34