angular-viewchild

Installation
SKILL.md

Angular ViewChild / ContentChild

Version: Angular 21 (2025) Tags: ViewChild, ContentChild, DOM, Queries

References: ViewChild APIContentChild API

Best Practices

  • Use ViewChild for element reference
import { ViewChild, ElementRef, AfterViewInit } from '@angular/core';

@Component({})
export class MyComponent implements AfterViewInit {
  @ViewChild('input') inputEl!: ElementRef<HTMLInputElement>;
Installs
145
GitHub Stars
6
First Seen
Apr 2, 2026
angular-viewchild — oguzhan18/angular-ecosystem-skills