我正在使用Angular2和ng-bootstrap。我从here获取了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>