salix/client/order/src/summary/index.js

18 lines
300 B
JavaScript
Raw Normal View History

2018-07-18 12:38:43 +00:00
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: '<'
}
});