import ngModule from '../module'; class Controller { constructor($http) { this.$http = $http; } } Controller.$inject = ['$http']; ngModule.component('vnOrderSummary', { template: require('./index.html'), controller: Controller, bindings: { order: '<' } });