import { Component, OnInit, OnDestroy, Input, ElementRef } from '@angular/core'; @Component({ selector: 'cm-treeView', templateUrl: './treeView.component.html', styleUrls: ['./treeView.component.less'] }) export class TreeViewComponent implements OnInit { _cmData:any; isOnly:boolean=false; @Input() set cmData(cmData:any){ this._cmData = cmData } ngOnInit(): void { // console.log(this._cmData,this._cmData.length) if(this._cmData.length == 1){ this.isOnly = true } } }