10
각도 @ViewChild () 오류 : 2 개의 인수가 필요하지만 1 개가 있음
ViewChild를 시도 할 때 오류가 발생합니다. 오류는 " 'opts'에 대한 인수가 제공되지 않았습니다."입니다. @ViewChild 모두 오류가 발생했습니다. import { Component, OnInit, ElementRef, ViewChild, Output, EventEmitter } from '@angular/core'; import { Ingredient } from 'src/app/shared/ingredient.model'; @Component({ selector: 'app-shopping-edit', templateUrl: './shopping-edit.component.html', styleUrls: ['./shopping-edit.component.css'] }) export class ShoppingEditComponent implements OnInit { @ViewChild('nameInput') nameInputRef: …
249
angular
typescript