New to Kendo UI for Angular? Start a free 30-day trial
KENDO_TREEVIEW
Use the KENDO_TREEVIEW
utility array to add all @progress/kendo-angular-treeview
-related components and directives to a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_TREEVIEW } from '@progress/kendo-angular-treeview';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_TREEVIEW],
template: `<kendo-treeview></kendo-treeview>`
})
export class AppComponent {}