New to Kendo UI for Angular? Start a free 30-day trial
MenusModule
A module that includes the Menu and ContextMenu components and directives. Imports the MenusModule into your application root module or any other sub-module that will use the Menu and ContextMenu components.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MenusModule } from '@progress/kendo-angular-menu';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, BrowserAnimationsModule, MenusModule]
})
export class AppModule {
}