Angular自学笔记(?)ContentChild和ContentChildren

左丘善
2023-12-01

ContentChild

用法类似ViewChild, 获取投影中到组件或指令还有元素dom等

获取投影中但组件

import {
   AfterViewInit, Component, ElementRef, OnInit, ViewChild} from '@angular/core';

@Component({
   
  selector: 'app-content-child-panel',
  templateUrl
 类似资料: