попробуйте это
var myApp = angular.module('testModule', [])
myApp.component('testModule', {
template: '<p> some things will be here</p>',
controller: [
'$scope', '$http',
function testController($scope, $http){
$scope.z = 0;
$scope.sum = function() {
$scope.z = $scope.x + $scope.y;
};
}
]
});
var testApp = angular.module('testApp', ['testModule']);
у меня работает