10
Lỗi Angular @ViewChild (): Dự kiến 2 đối số, nhưng có 1
Khi dùng thử ViewChild tôi gặp lỗi. Lỗi là "Đối số cho 'opts' không được cung cấp." Cả @ViewChild đều đưa ra lỗi. 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 …
249
angular
typescript