angularJS 1.3.14で
var app = angular.module('myApp',[]);
app.controller('myController',['$scope',function($scope){
$scope.name = 'world';
}]);
//here i created directive of name helloWorld
app.directive('helloWorld',function(){
return {
replace:true,
restrict:'AE',
template :'<h3>Hello world<h3/>'
}
});
<html ng-app='myApp'>
<body ng-controller = "myController">
<hello-world/>
</body>
</html>
エラー: [$compile:tplrt] ディレクティブ 'helloWorld' のテンプレートには、ルート要素が 1 つだけ必要です。
このエラーを解決するにはどうすればよいですか?