若要让下拉菜单Bootstrap(Angular)中的 [autoClose]='outside' 生效,需要在应用程序模块中导入@ng-bootstrap/ng-bootstrap,同时在代码的下拉div添加ngbDropdownMenu属性。示例如下:
在app.module.ts导入@ng-bootstrap/ng-bootstrap
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({ declarations: [ AppComponent ], imports: [ NgbModule //导入ng-bootstrap ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
在html文件中需要添加ngbDropdownMenu属性,并在button属性中指定dropdownMenu。