angular.jsとbootstarpのタブにドロップダウンを追加する方法は私のコードです
<tabset class="nav nav-tabs centered-tab sub-nav">
<tab heading="Bio" class="dropdown-toggle" >
<ul class="dropdown-menu">
<li ng-repeat="choice in items">
<a>{{choice}}</a>
</li>
</ul>
</tab>
</tabset>
コントローラ内
$scope.items = [
"The first choice!",
"And another choice for you.",
"but wait! A third!"
];
「バイオ」タブをクリックしても機能しません