salix/client/ticket/src/data/step-one/step-one.js

18 lines
316 B
JavaScript
Raw Normal View History

2018-04-04 11:56:16 +00:00
import ngModule from '../../module';
class Controller {
constructor($scope) {
2018-04-04 11:56:16 +00:00
this.$scope = $scope;
}
}
Controller.$inject = ['$scope'];
2018-04-04 11:56:16 +00:00
ngModule.component('vnTicketDataStepOne', {
template: require('./step-one.html'),
controller: Controller,
2018-04-04 11:56:16 +00:00
bindings: {
ticket: '<'
}
2018-04-04 11:56:16 +00:00
});