0

単一のファイルに次のスニペットがあり、次のエラーが発生します。

Template for directive 'uibTabset' must have exactly one root element /my-tabs.html

<script type="text/ng-template" id="/my-tabs.html</script>
                                    ..
                                    
<script type="text/javascript">
        angular.module('checkinapp', ['ngAnimate', 'ui.bootstrap']);
        angular.module('checkinapp').controller('TabsDemoCtrl', function($scope, $window) {
          // or here... $scope.indextab = 1
        });
        </script>
                             
....
<section class="my-tabs" ng-controller="TabsDemoCtrl" ng-init="indextab = 1">
					<uib-tabset active="indextab" template-url="/my-tabs.html">
						<uib-tab index="0" heading="Static title" class="col-xs-4 col-sm-4 col-md-4 col-lg-4">Static First</uib-tab>
						<uib-tab index="1" heading="Static title1" class="col-xs-4 col-sm-4 col-md-4 col-lg-4">Static Second</uib-tab>
						<uib-tab index="2" heading="Static title2" active="true" class="col-xs-4 col-sm-4 col-md-4 col-lg-4">Static Third</uib-tab>
					</uib-tabset>
				</section>

どうすれば解決できますか?

ありがとう

4

1 に答える 1