0

angular-bootstrap 要素でスクロール可能なタブを実装するための bootstrap-scrolling-tabs 。

ここに私のコードがあります

 <div class="abc">
            <div class="panel panel-default abcd" >
                <div scrolling-tabs-wrapper>
                    <tabset>
                        <tab class="verticalText" heading="{{evi.evidenceIdentifier}}" ng-repeat="evi in examinationCtrl.getEvidences(examinationCtrl.currentDocument)"
                             select="examinationCtrl.selectEvidence(evi.sss)">
                            <div class="embed-responsive-pdf embed-responsive" ng-style="style()">
                                <div embed-src="{{examinationCtrl.urlForEvidence(evi.sss)}}"
                                     class="embed-responsive-item embed-progress"></div>
                            </div>
                        </tab>
                    </tabset>
                </div>
            </div>
        </div>

これを実行すると、以下のエラーが発生します。これの何が問題なのですか?

Controller 'tabset', required by directive 'tabContentTransclude', can't be found!
4

1 に答える 1