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

Hello {{ $ctrl.name }}

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