10
Помилка Angular @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: ElementRef; …
249
angular
typescript