我正在使用 Angular2 和 ng-bootstrap。我从这里获取了 NgbAccordion 和 NgbTabset 示例。他们在功能上运作良好,但他们的风格是问题所在。单击时选项卡不会变为活动状态,并且手风琴中的面板完全没有样式。可能是什么问题呢?
<ngb-accordion [closeOthers]="true" activeIds="1">
<ngb-panel id="1" title="Simple">
<template ngbPanelContent>
...
</template>
</ngb-panel>
<ngb-panel id="2">
<template ngbPanelTitle>
<span>★ <b>Fancy</b> title ★</span>
</template>
<template ngbPanelContent>
...
</template>
</ngb-panel>
<ngb-panel id="3" title="Disabled" [disabled]="true">
<template ngbPanelContent>
...
</template>
</ngb-panel>
</ngb-accordion>