你需要定义BsDropdownConfig
import { Component } from '@angular/core';
import { BsDropdownConfig } from 'ngx-bootstrap/dropdown'; // add this line
@Component({
selector: 'demo-dropdown-basic',
templateUrl: './basic.html',
providers: [{ provide: BsDropdownConfig, useValue: { isAnimated: true, autoClose: true } }]
})
export class DemoDropdownBasicComponent {}
我遇到了问题,上面的 div 中缺少
dropdown
指令