(function(angular) { angular .module('n.Hello', []) .component('hello', { template: '

Hello {{ $ctrl.name }}

', controller: function() { this.name = 'World'; } }); })(window.angular);