收到错误错误:“BsDropdownDirective”既不是“ComponentType”也不是“DirectiveType”

问题描述 投票:0回答:2
html angular drop-down-menu angularjs-directive ngx-bootstrap
2个回答
0
投票

你需要定义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 {}

0
投票

我遇到了问题,上面的 div 中缺少

dropdown
指令

© www.soinside.com 2019 - 2024. All rights reserved.