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

Hello {{ $ctrl.name }}

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