I\'m developing a web application with Angular 5 and Bootstrap 4 and I\'m having problems with the nav menu bar dropdowns. I\'m following the documentation https://getbootst
Additional to app.module.ts, you need to import the module MDBBootstrapModule.forRoot() in the module where you are putting navbar code.
Example: ../custom.module.ts
import { MDBBootstrapModule } from 'angular-bootstrap-md';
...
@NgModule({
imports: [
CommonModule,
MDBBootstrapModule.forRoot()
],
...