来自Angular中ng-bootstrap的Popover

时间:2018-11-25 01:16:58

标签: angular popover ng-bootstrap

我想将bootstrap popover放到我的按钮上,但是当我单击它时它不会打开。

<button type="button" class="btn btn-primary" ngbPopover="content" popoverTitle="title" placement="right">Click Me</button>

以下几行摘录自我的app.module.ts

import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
...
@NgModule({
    declarations: [
        ...
    ],
    imports: [
        NgbModule,
        ...
    ],
    ...

2 个答案:

答案 0 :(得分:0)

事实证明ng-bootstrap版本与我的角度版本不匹配。

答案 1 :(得分:0)

  

查看此page以获得有关哪个版本的信息   bootstrap&angular与ng-bootstrap的版本兼容。   例如,我在我的angular5中使用ng-bootstrap版本1.x.x   使用Bootstrap CSS 4构建的项目

当前,ng bootstrap只能与angular 5+一起使用,但这是SO question,有些人尝试将ng-bootstrap与angular 2一起使用。