10
Errore angolare @ViewChild (): previsti 2 argomenti, ma ottenuto 1
Quando provo ViewChild ottengo l'errore. L'errore è "Non è stato fornito un argomento per 'opts'." Entrambi @ViewChild sta dando l'errore. 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 …
249
angular
typescript